Skip to content

Commit 36be907

Browse files
committed
Fix test suite for python 3
1 parent c9a2c6b commit 36be907

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_fixtures.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def test_config_access(self, config):
1111
assert config['SECRET_KEY'] == '42'
1212

1313
def test_client(self, client):
14-
assert client.get(url_for('ping')).status == b'200 OK'
14+
assert client.get(url_for('ping')).status == '200 OK'
1515

1616
def test_accept_json(self, accept_json):
1717
assert accept_json == [('Accept', 'application/json')]

0 commit comments

Comments
 (0)