Change few testcase descriptions

Reaction to changes in 130cbcfaa3.
This commit is contained in:
David Majda 2015-08-06 16:38:38 +02:00
parent d7d7e87874
commit 703a352985
2 changed files with 2 additions and 2 deletions

View file

@ -25,7 +25,7 @@ describe("compiler pass |reportInfiniteLoops|", function() {
});
});
it("computes empty string matching correctly", function() {
it("computes expressions that always advance on success correctly", function() {
expect(pass).toReportError([
'start = a*',
'a "a" = ""'

View file

@ -39,7 +39,7 @@ describe("compiler pass |reportLeftRecursion|", function() {
expect(pass).not.toReportError('start = "" "" "a" start');
});
it("computes empty string matching correctly", function() {
it("computes expressions that always advance on success correctly", function() {
expect(pass).toReportError([
'start = a start',
'a "a" = ""'