From: Carol Willing Date: Fri, 29 Aug 2014 02:42:21 +0000 (-0700) Subject: Fixes typo in test X-Git-Tag: v2.4.2~4^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0713e09526d3ed2d2fe2516fa6d35727c557024f;p=services%2Fpython-requests.git Fixes typo in test --- diff --git a/test_requests.py b/test_requests.py index af27235..294ba68 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):