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/050_compose/compose_tests.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/050_compose/compose_tests.c') diff --git a/test/050_compose/compose_tests.c b/test/050_compose/compose_tests.c index c778838..c61775f 100644 --- a/test/050_compose/compose_tests.c +++ b/test/050_compose/compose_tests.c @@ -7,9 +7,9 @@ void run(void) { cube_t c1, c2, c3; fgets(str, STRLENMAX, stdin); - c1 = readcube("H48", str); + c1 = readcube(str); fgets(str, STRLENMAX, stdin); - c2 = readcube("H48", str); + c2 = readcube(str); c3 = compose(c1, c2); @@ -18,7 +18,7 @@ void run(void) { } else if (!issolvable(c3)) { printf("Composed cube is not solvable\n"); } else { - writecube("H48", c3, NISSY_SIZE_H48, str); + writecube(c3, NISSY_SIZE_CUBE, str); printf("%s\n", str); } } -- cgit v1.3