Skip to content

Commit

Permalink
Merge pull request #119 from dimagi/django-TestCase
Browse files Browse the repository at this point in the history
use django.test.TestCase throughout
  • Loading branch information
snopoke committed Jul 18, 2014
2 parents de33603 + 3c7870b commit 2d2506b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion couchforms/tests/test_auth.py
@@ -1,7 +1,7 @@
from django.test import TestCase
from couchforms.models import DefaultAuthContext
from couchforms.util import post_xform_to_couch
import os
from django.utils.unittest.case import TestCase


class AuthTest(TestCase):
Expand Down
2 changes: 1 addition & 1 deletion couchforms/tests/test_post.py
@@ -1,5 +1,5 @@
import json
from django.utils.unittest.case import TestCase
from django.test import TestCase
import os
from couchforms.models import XFormInstance
from couchforms import create_xform_from_xml
Expand Down
2 changes: 1 addition & 1 deletion couchforms/tests/test_xml.py
Expand Up @@ -4,7 +4,7 @@
import uuid
import os
from couchforms.util import post_xform_to_couch
from django.utils.unittest.case import TestCase
from django.test import TestCase


class XMLElementTest(TestCase):
Expand Down

0 comments on commit 2d2506b

Please sign in to comment.