diff options
-rw-r--r-- | test/test_variables.py | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/test/test_variables.py b/test/test_variables.py index ebbc5aa2..80236f65 100644 --- a/test/test_variables.py +++ b/test/test_variables.py @@ -261,10 +261,13 @@ Connection: close def test_variables_dynamic(self): self.set_format('$header_foo$cookie_foo$arg_foo') - self.get( - url='/?foo=h', - headers={'Foo': 'b', 'Cookie': 'foo=la', 'Connection': 'close'}, - )['status'] = 200 + assert ( + self.get( + url='/?foo=h', + headers={'Foo': 'b', 'Cookie': 'foo=la', 'Connection': 'close'}, + )['status'] + == 200 + ) assert self.wait_for_record(r'^blah$') is not None def test_variables_dynamic_arguments(self): |