Skip to content

Commit 4719e18

Browse files
committed
Synced tests toml and regenerated test file for crypto-square.
1 parent fad4221 commit 4719e18

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

exercises/practice/crypto-square/.meta/tests.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,8 @@ description = "8 character plaintext results in 3 chunks, the last one with a tr
3232

3333
[fbcb0c6d-4c39-4a31-83f6-c473baa6af80]
3434
description = "54 character plaintext results in 7 chunks, the last two with trailing spaces"
35+
include = false
36+
37+
[33fd914e-fa44-445b-8f38-ff8fbc9fe6e6]
38+
description = "54 character plaintext results in 8 chunks, the last two with trailing spaces"
39+
reimplements = "fbcb0c6d-4c39-4a31-83f6-c473baa6af80"

exercises/practice/crypto-square/crypto_square_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# These tests are auto-generated with test data from:
22
# https://github.com/exercism/problem-specifications/tree/main/exercises/crypto-square/canonical-data.json
3-
# File last updated on 2023-07-19
3+
# File last updated on 2025-06-20
44

55
import unittest
66

@@ -47,7 +47,7 @@ def test_8_character_plaintext_results_in_3_chunks_the_last_one_with_a_trailing_
4747
expected = "clu hlt io "
4848
self.assertEqual(cipher_text(value), expected)
4949

50-
def test_54_character_plaintext_results_in_7_chunks_the_last_two_with_trailing_spaces(
50+
def test_54_character_plaintext_results_in_8_chunks_the_last_two_with_trailing_spaces(
5151
self,
5252
):
5353
value = "If man was meant to stay on the ground, god would have given us roots."

0 commit comments

Comments
 (0)