diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2024-04-13 15:57:23 +0200 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2024-04-13 15:57:23 +0200 |
| commit | a4598b740fe4b8350b7d09a575c793113c8fde2b (patch) | |
| tree | 157cdb108564389ecdf1badae2501f890fc2a126 /test/060_transform | |
| parent | 3ab2f98170908277f70191846e84e5dde185a056 (diff) | |
| download | cubecore-a4598b740fe4b8350b7d09a575c793113c8fde2b.tar.gz cubecore-a4598b740fe4b8350b7d09a575c793113c8fde2b.zip | |
Some renaming, moved stuff around
Diffstat (limited to 'test/060_transform')
| -rw-r--r-- | test/060_transform/transform_tests.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/060_transform/transform_tests.c b/test/060_transform/transform_tests.c index 8680a0b..454bc22 100644 --- a/test/060_transform/transform_tests.c +++ b/test/060_transform/transform_tests.c | |||
| @@ -8,7 +8,7 @@ int main(void) { | |||
| 8 | 8 | ||
| 9 | fgets(transtr, STRLENMAX, stdin); | 9 | fgets(transtr, 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 = applytrans(cube, transtr); | 13 | cube = applytrans(cube, transtr); |
| 14 | 14 | ||
| @@ -17,7 +17,7 @@ int main(void) { | |||
| 17 | } else if (!cube_solvable(cube)) { | 17 | } else if (!cube_solvable(cube)) { |
| 18 | printf("Transformed cube is not solvable\n"); | 18 | printf("Transformed 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 | ||
