Skip to content

Commit

Permalink
fix py3 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasWaldmann committed Dec 24, 2013
1 parent ba97719 commit bf2f5bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nsupdate/api/_tests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def test_nic_update_authorized_ns_unavailable(client):
response = client.get(reverse('nic_update'),
HTTP_AUTHORIZATION=make_basic_auth_header(TEST_HOST, TEST_SECRET))
assert response.status_code == 200
assert response.content == 'dnserr'
assert response.content == b'dnserr'


def test_nic_update_authorized_myip(client):
Expand Down

0 comments on commit bf2f5bb

Please sign in to comment.