summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarol Willing <carolcode@willingconsulting.com>2014-08-28 19:42:21 -0700
committerCarol Willing <carolcode@willingconsulting.com>2014-08-28 19:42:21 -0700
commit0713e09526d3ed2d2fe2516fa6d35727c557024f (patch)
treeb47d1f554fc28576a5e487efd7099e32122a0a56
parent402f3b4993fe8d0626fcffcbfc30caf671b65df3 (diff)
downloadpython-requests-0713e09526d3ed2d2fe2516fa6d35727c557024f.tar.gz
Fixes typo in test
-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):