Properly display tests

This commit is contained in:
Berkeley Martinez
2015-11-21 14:44:33 -08:00
parent 4a7470f658
commit 7593dc4e1b
5 changed files with 9 additions and 7 deletions

View File

@@ -82,7 +82,7 @@ window.common = (function(global) {
};
common.reassembleTest = function reassembleTest(code = '', { line, text }) {
var regexp = new RegExp('\/\/' + line + common.salt);
var regexp = new RegExp('//' + line + common.salt);
return code.replace(regexp, text);
};