diff options
-rw-r--r-- | polly/test/update_check.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/polly/test/update_check.py b/polly/test/update_check.py index 7350f5440b2..168f3a983f3 100644 --- a/polly/test/update_check.py +++ b/polly/test/update_check.py @@ -95,6 +95,10 @@ def classyfier1(lines): yield {'AssumedContext'} line = i.__next__() yield {'AssumedContext'} + elif line == ' Invalid Context:': + yield {'InvalidContext'} + line = i.__next__() + yield {'InvalidContext'} elif line == ' Boundary Context:': yield {'BoundaryContext'} line = i.__next__() |