1
0
mirror of https://github.com/ThrowTheSwitch/Unity synced 2025-05-24 02:39:33 -04:00

Merge pull request from farshield/fix_small_typo

Fix small typo
This commit is contained in:
Mark VanderVoord 2020-03-28 13:34:31 -04:00 committed by GitHub
commit 10fd84f02b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -110,7 +110,7 @@ class UnityTestRunnerGenerator
tests_and_line_numbers = []
# contains characters which will be substituted from within strings, doing
# this prevents these characters from interferring with scrubbers
# this prevents these characters from interfering with scrubbers
# @ is not a valid C character, so there should be no clashes with files genuinely containing these markers
substring_subs = { '{' => '@co@', '}' => '@cc@', ';' => '@ss@', '/' => '@fs@' }
substring_re = Regexp.union(substring_subs.keys)