diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2025-04-22 11:14:06 +0200 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2025-04-22 11:14:06 +0200 |
| commit | cd866d68cf1bf6ea928cc48a4f2b753c0b1baa6f (patch) | |
| tree | f50ad0087e90e301240b6c93dcd267cbe49b282d /test/060_transform/transform_tests.c | |
| parent | 8b72e391c7185e3da0dfbf0ab60068ac37e4d5cc (diff) | |
| download | nissy-core-cd866d68cf1bf6ea928cc48a4f2b753c0b1baa6f.tar.gz nissy-core-cd866d68cf1bf6ea928cc48a4f2b753c0b1baa6f.zip | |
Updated tests and added fixed =A to B32 output
Diffstat (limited to 'test/060_transform/transform_tests.c')
| -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 80a2031..4ae161c 100644 --- a/test/060_transform/transform_tests.c +++ b/test/060_transform/transform_tests.c | |||
| @@ -8,7 +8,7 @@ void run(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 = readcube(cubestr); |
| 12 | 12 | ||
| 13 | cube = applytrans(cube, transtr); | 13 | cube = applytrans(cube, transtr); |
| 14 | 14 | ||
| @@ -17,7 +17,7 @@ void run(void) { | |||
| 17 | } else if (!issolvable(cube)) { | 17 | } else if (!issolvable(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, NISSY_SIZE_H48, cubestr); | 20 | writecube(cube, NISSY_SIZE_CUBE, cubestr); |
| 21 | printf("%s\n", cubestr); | 21 | printf("%s\n", cubestr); |
| 22 | } | 22 | } |
| 23 | } | 23 | } |
