summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtest_requests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test_requests.py b/test_requests.py
index af272355..294ba684 100755
--- a/test_requests.py
+++ b/test_requests.py
@@ -993,7 +993,7 @@ class RequestsTestCase(unittest.TestCase):
)
assert r.status_code == 200
assert 'application/json' in r.request.headers['Content-Type']
- #assert {'life': 42} == r.json()['json']
+ assert {'life': 42} == r.json()['json']
class TestContentEncodingDetection(unittest.TestCase):