Skip to content

Commit f55df54

Browse files
authored
practice-exercise-generator: Don't include commas in test names (exercism#420)
fixes exercism#419
1 parent 19823ab commit f55df54

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tools/practice-exercise-generator.el

+3-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,9 @@ Each hash-table has the keys:
171171
("test-name"
172172
(string-inflection-kebab-case-function
173173
(replace-regexp-in-string
174-
"[ |_]" "-" (gethash "description" elem))))
174+
"," ""
175+
(replace-regexp-in-string
176+
"[ |_]" "-" (gethash "description" elem)))))
175177
("uuid" (gethash "uuid" elem))
176178
("reimplements" (gethash "reimplements" elem))
177179
("function-under-test"

0 commit comments

Comments
 (0)