Fixes issue #85. Also moves all json imports to go through oauth2client.anyjson. Reviewed in http://codereview.appspot.com/5531064/.
diff --git a/tests/test_schema.py b/tests/test_schema.py
index 7430ac7..2cdb200 100644
--- a/tests/test_schema.py
+++ b/tests/test_schema.py
@@ -20,8 +20,8 @@
import unittest
import StringIO
-from apiclient.anyjson import simplejson
from apiclient.schema import Schemas
+from oauth2client.anyjson import simplejson
DATA_DIR = os.path.join(os.path.dirname(__file__), 'data')
@@ -39,7 +39,7 @@
"anyVal": "", # Anything will do.
"nullVal": None,
"stringVal": "A String",
- "doubleVal": 3.140000,
+ "doubleVal": 3.14,
"booleanVal": True or False, # True or False.
},
],