aboutsummaryrefslogtreecommitdiff
path: root/test/040_compose
diff options
context:
space:
mode:
Diffstat (limited to 'test/040_compose')
-rw-r--r--test/040_compose/compose_tests.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/040_compose/compose_tests.c b/test/040_compose/compose_tests.c
index 62f636e..c9c11af 100644
--- a/test/040_compose/compose_tests.c
+++ b/test/040_compose/compose_tests.c
@@ -15,9 +15,9 @@ int main() {
15 cube_t c1, c2, c3; 15 cube_t c1, c2, c3;
16 16
17 fgets(str, STRLENMAX, stdin); 17 fgets(str, STRLENMAX, stdin);
18 c1 = readcube(H48, str); 18 c1 = readcube("H48", str);
19 fgets(str, STRLENMAX, stdin); 19 fgets(str, STRLENMAX, stdin);
20 c2 = readcube(H48, str); 20 c2 = readcube("H48", str);
21 21
22 c3 = compose(c1, c2); 22 c3 = compose(c1, c2);
23 23
@@ -26,7 +26,7 @@ int main() {
26 } else if (!issolvable(c3)) { 26 } else if (!issolvable(c3)) {
27 printf("Composed cube is not solvable\n"); 27 printf("Composed cube is not solvable\n");
28 } else { 28 } else {
29 writecube(H48, c3, str); 29 writecube("H48", c3, str);
30 printf("%s\n", str); 30 printf("%s\n", str);
31 } 31 }
32 32

Generated with cgit - Back to sebastiano.tronto.net