From cd866d68cf1bf6ea928cc48a4f2b753c0b1baa6f Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Tue, 22 Apr 2025 11:14:06 +0200 Subject: Updated tests and added fixed =A to B32 output --- test/077_copy_edges/copy_edges_tests.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/077_copy_edges/copy_edges_tests.c') diff --git a/test/077_copy_edges/copy_edges_tests.c b/test/077_copy_edges/copy_edges_tests.c index 48c5c53..36e32af 100644 --- a/test/077_copy_edges/copy_edges_tests.c +++ b/test/077_copy_edges/copy_edges_tests.c @@ -7,10 +7,10 @@ void run(void) { cube_t c1, c2; fgets(str, STRLENMAX, stdin); - c1 = readcube("H48", str); + c1 = readcube(str); fgets(str, STRLENMAX, stdin); - c2 = readcube("H48", str); + c2 = readcube(str); copy_edges(&c1, c2); @@ -19,7 +19,7 @@ void run(void) { } else if (!isconsistent(c1)) { printf("Setting EO resulted in inconsistent cube\n"); } else { - writecube("H48", c1, NISSY_SIZE_H48, str); + writecube(c1, NISSY_SIZE_CUBE, str); printf("%s\n", str); } } -- cgit v1.3