test_request: simplejson is just as good as omnijson for test

This commit is contained in:
Gulácsi Tamás
2011-07-23 22:15:28 +02:00
parent f18c40fd36
commit f408829d51
+4 -1
View File
@@ -6,7 +6,10 @@ from __future__ import with_statement
import unittest
import cookielib
import omnijson as json
try:
import omnijson as json
except ImportError:
import simplejson as json
import requests