aboutsummaryrefslogtreecommitdiff
path: root/js/decode_synth_test.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/decode_synth_test.js')
-rw-r--r--js/decode_synth_test.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/js/decode_synth_test.js b/js/decode_synth_test.js
index d321a88..34ab537 100644
--- a/js/decode_synth_test.js
+++ b/js/decode_synth_test.js
@@ -2289,7 +2289,8 @@ testZeroCostLiterals() {
describe("DecodeSynthTest", () => {
const testNames = Object.keys(allTests);
for (let i = 0; i < testNames.length; ++i) {
- const testName = testNames[i];
- it(testName, allTests[testName]);
+ const key = testNames[i];
+ const testName = key.replace(/\$/g, '');
+ it(testName, allTests[key]);
}
});