From 05fdf0b631334c4a4b677caab553100a6fa34fbc Mon Sep 17 00:00:00 2001 From: Asif Saifuddin Auvi Date: Fri, 10 Mar 2017 02:14:44 +0600 Subject: [PATCH] moved 3rd arg from test_empty_post_uses_default_boolean_value test assert --- tests/test_testing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_testing.py b/tests/test_testing.py index 7dc7c01a5..4a68a1e1e 100644 --- a/tests/test_testing.py +++ b/tests/test_testing.py @@ -200,7 +200,7 @@ class TestAPITestClient(TestCase): data=None, content_type='application/json' ) - assert response.status_code == 200 == response.content + assert response.status_code == 200 assert response.data == {"flag": True}