From bab22e1946a656088804b61cf765461b48744971 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Tue, 22 Apr 2025 16:12:21 +0200 Subject: Update tests for oriented_cube_t --- test/077_copy_edges/copy_edges_tests.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/077_copy_edges') diff --git a/test/077_copy_edges/copy_edges_tests.c b/test/077_copy_edges/copy_edges_tests.c index 36e32af..f3b0589 100644 --- a/test/077_copy_edges/copy_edges_tests.c +++ b/test/077_copy_edges/copy_edges_tests.c @@ -4,7 +4,7 @@ void copy_edges(cube_t *, cube_t); void run(void) { char str[STRLENMAX]; - cube_t c1, c2; + oriented_cube_t c1, c2; fgets(str, STRLENMAX, stdin); c1 = readcube(str); @@ -12,7 +12,7 @@ void run(void) { fgets(str, STRLENMAX, stdin); c2 = readcube(str); - copy_edges(&c1, c2); + copy_edges(&c1.cube, c2.cube); if (iserror(c1)) { printf("Error setting EO\n"); -- cgit v1.3