Skip to content

rail-fence-cipher 1.0.1: Remove "test to" from all descriptions #771

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 3, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions exercises/rail-fence-cipher/canonical-data.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"exercise": "rail-fence-cipher",
"version": "1.0.0",
"version": "1.0.1",
"comments": [
"The tests do not expect any normalization or cleaning.",
"That trade is tested in enough other exercises."
Expand All @@ -10,21 +10,21 @@
"description": "encode",
"cases": [
{
"description": "test to encode with two rails",
"description": "encode with two rails",
"property": "encode",
"msg": "XOXOXOXOXOXOXOXOXO",
"rails": 2,
"expected": "XXXXXXXXXOOOOOOOOO"
},
{
"description": "test to encode with three rails",
"description": "encode with three rails",
"property": "encode",
"msg": "WEAREDISCOVEREDFLEEATONCE",
"rails": 3,
"expected": "WECRLTEERDSOEEFEAOCAIVDEN"
},
{
"description": "test to encode with ending in the middle",
"description": "encode with ending in the middle",
"property": "encode",
"msg": "EXERCISES",
"rails": 4,
Expand All @@ -36,21 +36,21 @@
"description": "decode",
"cases": [
{
"description": "test to decode with three rails",
"description": "decode with three rails",
"property": "decode",
"msg": "TEITELHDVLSNHDTISEIIEA",
"rails": 3,
"expected": "THEDEVILISINTHEDETAILS"
},
{
"description": "test to decode with five rails",
"description": "decode with five rails",
"property": "decode",
"msg": "EIEXMSMESAORIWSCE",
"rails": 5,
"expected": "EXERCISMISAWESOME"
},
{
"description": "test to decode with six rails",
"description": "decode with six rails",
"property": "decode",
"msg": "133714114238148966225439541018335470986172518171757571896261",
"rails": 6,
Expand Down