Commit 03926ad2 authored by Jason Madden's avatar Jason Madden

Remove a missing unittest method.

parent 4f523551
...@@ -453,9 +453,6 @@ class TestCase(TestCaseMetaClass("NewBase", ...@@ -453,9 +453,6 @@ class TestCase(TestCaseMetaClass("NewBase",
except AssertionError: except AssertionError:
flaky.reraiseFlakyTestRaceCondition() flaky.reraiseFlakyTestRaceCondition()
assertRaisesRegex = getattr(BaseTestCase, 'assertRaisesRegex',
getattr(BaseTestCase, 'assertRaisesRegexp'))
def assertStartsWith(self, it, has_prefix): def assertStartsWith(self, it, has_prefix):
self.assertTrue(it.startswith(has_prefix), (it, has_prefix)) self.assertTrue(it.startswith(has_prefix), (it, has_prefix))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment