Skip to content

Commit

Permalink
Fix unit tests broken by last commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy Chu committed Oct 5, 2018
1 parent 9d70b6f commit 7444e2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/word_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ def testDetectLocation(self):
('a[x', (None, None, 0)),

# Empty is not valid, there has to be at least one token.
('a[]=$foo$bar', (None, None, 0)),
('a[]+=$foo$bar', (None, None, 0)),
('a[]=$foo$bar', (Id.Lit_ArrayLhsOpen, Id.Lit_ArrayLhsClose, 2)),
('a[]+=$foo$bar', (Id.Lit_ArrayLhsOpen, Id.Lit_ArrayLhsClose, 2)),

('s=1', (Id.Lit_VarLike, None, 1)),
('s+=1', (Id.Lit_VarLike, None, 1)),
Expand Down

0 comments on commit 7444e2b

Please sign in to comment.