aboutsummaryrefslogtreecommitdiff
path: root/test/030_move
diff options
context:
space:
mode:
authorSebastiano Tronto <sebastiano@tronto.net>2024-04-13 15:57:23 +0200
committerSebastiano Tronto <sebastiano@tronto.net>2024-04-13 15:57:23 +0200
commita4598b740fe4b8350b7d09a575c793113c8fde2b (patch)
tree157cdb108564389ecdf1badae2501f890fc2a126 /test/030_move
parent3ab2f98170908277f70191846e84e5dde185a056 (diff)
downloadcubecore-a4598b740fe4b8350b7d09a575c793113c8fde2b.tar.gz
cubecore-a4598b740fe4b8350b7d09a575c793113c8fde2b.zip
Some renaming, moved stuff around
Diffstat (limited to 'test/030_move')
-rw-r--r--test/030_move/move_tests.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/030_move/move_tests.c b/test/030_move/move_tests.c
index 39458ba..497ac6c 100644
--- a/test/030_move/move_tests.c
+++ b/test/030_move/move_tests.c
@@ -8,7 +8,7 @@ int main(void) {
8 8
9 fgets(movestr, STRLENMAX, stdin); 9 fgets(movestr, STRLENMAX, stdin);
10 fgets(cubestr, STRLENMAX, stdin); 10 fgets(cubestr, STRLENMAX, stdin);
11 cube = readcube("H48", cubestr); 11 cube = cube_read("H48", cubestr);
12 12
13 cube = applymoves(cube, movestr); 13 cube = applymoves(cube, movestr);
14 14
@@ -17,7 +17,7 @@ int main(void) {
17 } else if (!cube_solvable(cube)) { 17 } else if (!cube_solvable(cube)) {
18 printf("Moved cube is not solvable\n"); 18 printf("Moved cube is not solvable\n");
19 } else { 19 } else {
20 writecube("H48", cube, cubestr); 20 cube_write("H48", cube, cubestr);
21 printf("%s\n", cubestr); 21 printf("%s\n", cubestr);
22 } 22 }
23 23

Generated with cgit - Back to sebastiano.tronto.net