Skip to content

Commit 0ef088e

Browse files
committed
tests.py: fix lint warnings
1 parent 5feef8a commit 0ef088e

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

geocamLens/tests.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,8 @@
1111
Replace these with more appropriate tests for your application.
1212
"""
1313

14-
from xml.dom import minidom
14+
# from xml.dom import minidom
1515
from django.test import TestCase
16-
from django.test.client import Client
1716

1817

1918
class ValidKmlTest(TestCase):
@@ -26,8 +25,7 @@ class ValidKmlTest(TestCase):
2625
# """
2726
# Tests that querying startSession.kml returns valid XML.
2827
# """
29-
# c = Client()
30-
# response = c.get('/kml/startSession.kml')
28+
# response = self.client.get('/kml/startSession.kml')
3129
# # check for http success status
3230
# self.failUnlessEqual(response.status_code, 200)
3331
# # check response is not empty

0 commit comments

Comments
 (0)