summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_gdb/util.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_gdb/util.py')
-rw-r--r--Lib/test/test_gdb/util.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/Lib/test/test_gdb/util.py b/Lib/test/test_gdb/util.py
index 8fe9cfc..8097fd5 100644
--- a/Lib/test/test_gdb/util.py
+++ b/Lib/test/test_gdb/util.py
@@ -280,11 +280,6 @@ class DebuggerTests(unittest.TestCase):
return out
- def assertEndsWith(self, actual, exp_end):
- '''Ensure that the given "actual" string ends with "exp_end"'''
- self.assertTrue(actual.endswith(exp_end),
- msg='%r did not end with %r' % (actual, exp_end))
-
def assertMultilineMatches(self, actual, pattern):
m = re.match(pattern, actual, re.DOTALL)
if not m: