Fix small error in two testcases

Pointed out by @Mingun:

  6ce97457bf (commitcomment-10548605)
This commit is contained in:
David Majda 2015-07-17 15:31:46 +02:00
parent 6f2c75f7d8
commit 373f48c10f
2 changed files with 2 additions and 2 deletions

View file

@ -78,6 +78,6 @@ describe("compiler pass |reportLeftRecursion|", function() {
expect(pass).not.toReportError('start = [a-d]*'); expect(pass).not.toReportError('start = [a-d]*');
expect(pass).not.toReportError('start = "."*'); expect(pass).not.toReportError('start = .*');
}); });
}); });

View file

@ -92,7 +92,7 @@ describe("compiler pass |reportLeftRecursion|", function() {
expect(pass).not.toReportError('start = [a-d] start'); expect(pass).not.toReportError('start = [a-d] start');
expect(pass).not.toReportError('start = "." start'); expect(pass).not.toReportError('start = . start');
}); });
}); });
}); });