Release 1.10.0

remove special handling of 500 status codes
This commit is contained in:
Chris Dent 2015-10-19 16:46:52 +01:00
parent a85a12ee57
commit ad9c82fc79
2 changed files with 1 additions and 6 deletions

View File

@ -12,4 +12,4 @@
# under the License.
"""See gabbi.driver and gabbbi.case."""
__version__ = '1.9.0'
__version__ = '1.10.0'

View File

@ -461,8 +461,3 @@ class HTTPTestCase(unittest.TestCase):
self.fail(msg)
else:
self.assertIn(expected, iterable)
class ServerError(Exception):
"""A catchall ServerError."""
pass