Remove explicit requirement on testtools
HttpTestCase can inherit from unittest not testtools.
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user