Fix bug in testing infrastructure

This commit is contained in:
Ram Rachum 2019-04-24 22:08:34 +03:00
parent 5c31dfc28c
commit fbb2dbdd9d

View file

@ -131,7 +131,7 @@ class VariableEntry(_BaseValueEntry):
if self.stage is None:
return stage in ('starting', 'new', 'modified')
else:
return stage == self.value
return stage == self.stage
class ReturnValueEntry(_BaseValueEntry):
def __init__(self, value=None, value_regex=None, prefix=''):