Skip to content

Commit

Permalink
Bug fix for python 2.6.9 support
Browse files Browse the repository at this point in the history
  • Loading branch information
iandouglas committed May 22, 2017
1 parent 9e3bce4 commit da9d374
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stream/tests.py
Expand Up @@ -69,7 +69,7 @@ def api_request_parse_validator(test):
def wrapper(meth):
def _parse_response(*args, **kwargs):
response = meth(*args, **kwargs)
test.assertIn('duration', response)
test.assertTrue('duration' in response)
return response
return _parse_response
return wrapper
Expand Down

0 comments on commit da9d374

Please sign in to comment.