Make calling the super class's setUp() method less fragile.
llvm-svn: 116490
diff --git a/lldb/test/breakpoint_command/TestBreakpointCommand.py b/lldb/test/breakpoint_command/TestBreakpointCommand.py
index 600f609..451c344 100644
--- a/lldb/test/breakpoint_command/TestBreakpointCommand.py
+++ b/lldb/test/breakpoint_command/TestBreakpointCommand.py
@@ -27,7 +27,8 @@
self.breakpoint_command_sequence()
def setUp(self):
- super(BreakpointCommandTestCase, self).setUp()
+ # Call super's setUp().
+ TestBase.setUp(self)
# Find the line number to break inside main().
self.line = line_number('main.c', '// Set break point at this line.')