From fba3912f2ee2495fcdc91d2c48723b2de6e4a8ab Mon Sep 17 00:00:00 2001 From: Jakub Roztocil Date: Mon, 23 Jul 2012 19:49:38 +0200 Subject: [PATCH] Fixed tests. --- tests/tests.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) mode change 100644 => 100755 tests/tests.py diff --git a/tests/tests.py b/tests/tests.py old mode 100644 new mode 100755 index 4d92b6902c..eac1c7b0ba --- a/tests/tests.py +++ b/tests/tests.py @@ -21,6 +21,7 @@ import tempfile import unittest import argparse +import requests from requests.compat import is_py26, is_py3, str @@ -714,7 +715,7 @@ def test_guess_when_method_set_but_invalid_and_item_exists(self): ]) -class FakeResponse(Response): +class FakeResponse(requests.Response): class Mock(object):