Remove explicit requirement on testtools

HttpTestCase can inherit from unittest not testtools.
This commit is contained in:
Chris Dent
2015-01-26 17:30:38 +00:00
parent 31ce5d8bb8
commit 520f68dfc5
2 changed files with 2 additions and 3 deletions

View File

@@ -19,11 +19,11 @@ import os
import re
import jsonpath_rw
import testtools
import unittest
from six.moves.urllib import parse as urlparse
class HTTPTestCase(testtools.TestCase):
class HTTPTestCase(unittest.TestCase):
"""Encapsulate a single HTTP request as a TestCase.
If the test is a member of a sequence of requests, ensure that prior

View File

@@ -1,7 +1,6 @@
pbr>=0.6,!=0.7,<1.0
six>=1.7.0
PyYAML
testtools>=0.9.32
httplib2
jsonpath-rw
wsgi-intercept