Skip to content

Commit

Permalink
practice-exercise-generator: Don't include commas in test names (#420)
Browse files Browse the repository at this point in the history
fixes #419
  • Loading branch information
fapdash authored Jun 19, 2024
1 parent 19823ab commit f55df54
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tools/practice-exercise-generator.el
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,9 @@ Each hash-table has the keys:
("test-name"
(string-inflection-kebab-case-function
(replace-regexp-in-string
"[ |_]" "-" (gethash "description" elem))))
"," ""
(replace-regexp-in-string
"[ |_]" "-" (gethash "description" elem)))))
("uuid" (gethash "uuid" elem))
("reimplements" (gethash "reimplements" elem))
("function-under-test"
Expand Down

0 comments on commit f55df54

Please sign in to comment.