Skip to content

Commit 2982fbd

Browse files
committed
crypto-square: apply lowerCamelCase policy
1 parent cac0737 commit 2982fbd

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

exercises/crypto-square/canonical-data.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,60 @@
11
{
22
"exercise": "crypto-square",
3-
"version": "3.2.0",
3+
"version": "3.2.1",
44
"cases": [
55
{
66
"description": "empty plaintext results in an empty ciphertext",
7-
"property": "ciphertext",
7+
"property": "cipherText",
88
"input": {
9-
"plaintext": ""
9+
"plainText": ""
1010
},
1111
"expected": ""
1212
},
1313
{
1414
"description": "Lowercase",
15-
"property": "ciphertext",
15+
"property": "cipherText",
1616
"input": {
17-
"plaintext": "A"
17+
"plainText": "A"
1818
},
1919
"expected": "a"
2020
},
2121
{
2222
"description": "Remove spaces",
23-
"property": "ciphertext",
23+
"property": "cipherText",
2424
"input": {
25-
"plaintext": " b "
25+
"plainText": " b "
2626
},
2727
"expected": "b"
2828
},
2929
{
3030
"description": "Remove punctuation",
31-
"property": "ciphertext",
31+
"property": "cipherText",
3232
"input": {
33-
"plaintext": "@1,%!"
33+
"plainText": "@1,%!"
3434
},
3535
"expected": "1"
3636
},
3737
{
3838
"description": "9 character plaintext results in 3 chunks of 3 characters",
39-
"property": "ciphertext",
39+
"property": "cipherText",
4040
"input": {
41-
"plaintext": "This is fun!"
41+
"plainText": "This is fun!"
4242
},
4343
"expected": "tsf hiu isn"
4444
},
4545
{
4646
"description": "8 character plaintext results in 3 chunks, the last one with a trailing space",
47-
"property": "ciphertext",
47+
"property": "cipherText",
4848
"input": {
49-
"plaintext": "Chill out."
49+
"plainText": "Chill out."
5050
},
5151
"expected": "clu hlt io "
5252
},
5353
{
5454
"description": "54 character plaintext results in 7 chunks, the last two with trailing spaces",
55-
"property": "ciphertext",
55+
"property": "cipherText",
5656
"input": {
57-
"plaintext": "If man was meant to stay on the ground, god would have given us roots."
57+
"plainText": "If man was meant to stay on the ground, god would have given us roots."
5858
},
5959
"expected": "imtgdvs fearwer mayoogo anouuio ntnnlvt wttddes aohghn sseoau "
6060
}

0 commit comments

Comments
 (0)