Use python's json rather than Django's

django.utils.simplejson is deprecated; Python 2.6+ includes json.
Fixes #32.
This commit is contained in:
medmunds
2013-03-13 09:52:51 -07:00
parent 7484a39108
commit 64f32fbc72
3 changed files with 6 additions and 3 deletions

View File

@@ -1,8 +1,9 @@
import json
from mock import patch
from django.conf import settings
from django.test import TestCase
from django.utils import simplejson as json
class DjrillBackendMockAPITestCase(TestCase):
"""TestCase that uses Djrill EmailBackend with a mocked Mandrill API"""