Skip to content

Commit

Permalink
practice-exercise-generator: Don't include commas in test names (exer…
Browse files Browse the repository at this point in the history
  • Loading branch information
fapdash authored and kmarker1101 committed Jun 24, 2024
1 parent 2b607d4 commit 5e42d75
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 5e42d75

Please sign in to comment.