Skip to content
This repository has been archived by the owner on Feb 13, 2019. It is now read-only.

Commit

Permalink
More decoding
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Sinchok committed May 14, 2014
1 parent 1ca48a8 commit 4039523
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_video_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def test_video_endpoint(admin_client):
new_endpoint = reverse("video-new")
response = admin_client.post(new_endpoint, data={"name": "test.flv"})
assert response.status_code == 201
data = json.loads(response.content)
data = json.loads(response.content.encode("utf-8"))
video_id = data.get("id")

expected_path = "{}/{}/{}/test.flv".format(
Expand Down

0 comments on commit 4039523

Please sign in to comment.