Skip to content

Commit 42dd863

Browse files
committed
simple-cipher: remove invalid input cases
1 parent b9f4089 commit 42dd863

File tree

1 file changed

+1
-30
lines changed

1 file changed

+1
-30
lines changed

exercises/simple-cipher/canonical-data.json

Lines changed: 1 addition & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"exercise": "simple-cipher",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"comments":
55
["Some of the strings used in this file are symbolic and do not represent their literal value. They are:",
66
"cipher.key - Represents the Cipher key",
@@ -114,35 +114,6 @@
114114
"expected": "iboaqcnecbfcr"
115115
}
116116
]
117-
},
118-
{
119-
"description": "Incorrect key cipher",
120-
"cases": [
121-
{
122-
"description": "Throws an error with an all uppercase key",
123-
"property": "new",
124-
"input": {
125-
"key": "ABCDEF"
126-
},
127-
"expected": { "error": "Bad key" }
128-
},
129-
{
130-
"description": "Throws an error with a numeric key",
131-
"property": "new",
132-
"input": {
133-
"key": "12345"
134-
},
135-
"expected": { "error": "Bad key" }
136-
},
137-
{
138-
"description": "Throws an error with empty key",
139-
"property": "new",
140-
"input": {
141-
"key": ""
142-
},
143-
"expected": { "error": "Bad key" }
144-
}
145-
]
146117
}
147118
]
148119
}

0 commit comments

Comments
 (0)