aboutsummaryrefslogtreecommitdiff
path: root/test/02_move
diff options
context:
space:
mode:
Diffstat (limited to 'test/02_move')
-rw-r--r--test/02_move/move_tests.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/02_move/move_tests.c b/test/02_move/move_tests.c
index 333c8ee..054466b 100644
--- a/test/02_move/move_tests.c
+++ b/test/02_move/move_tests.c
@@ -22,7 +22,7 @@ int main() {
22 } 22 }
23 23
24 fgets(str, STRLENMAX, stdin); 24 fgets(str, STRLENMAX, stdin);
25 cube = readcube(str); 25 cube = readcube(H48, str);
26 26
27 for (i = 0; i < n; i++) 27 for (i = 0; i < n; i++)
28 cube = move(cube, moves[i]); 28 cube = move(cube, moves[i]);
@@ -32,7 +32,7 @@ int main() {
32 } else if (!issolvable(cube)) { 32 } else if (!issolvable(cube)) {
33 printf("Moved cube is not solvable\n"); 33 printf("Moved cube is not solvable\n");
34 } else { 34 } else {
35 writecube(cube, str); 35 writecube(H48, cube, str);
36 printf("%s\n", str); 36 printf("%s\n", str);
37 } 37 }
38 38

Generated with cgit - Back to sebastiano.tronto.net