commit | aadcef54def3f0e3d6c00a02565e42a91c44c024 | [log] [tgz] |
---|---|---|
author | Johnny Chen <johnny.chen@apple.com> | Thu Oct 14 17:31:24 2010 +0000 |
committer | Johnny Chen <johnny.chen@apple.com> | Thu Oct 14 17:31:24 2010 +0000 |
tree | 5bd8c6c715af629209ea0bb577e1a6b87f054718 | |
parent | d65924f4a005216e5508d56348ac3c17f1f7a37e [diff] [blame] |
Make calling the super class's setUp() method less fragile. llvm-svn: 116490
diff --git a/lldb/test/stl/TestSTL.py b/lldb/test/stl/TestSTL.py index 933a1f9..b489bae 100644 --- a/lldb/test/stl/TestSTL.py +++ b/lldb/test/stl/TestSTL.py
@@ -23,7 +23,8 @@ self.step_into_stl() def setUp(self): - super(STLTestCase, self).setUp() + # Call super's setUp(). + TestBase.setUp(self) # Find the line number to break inside main(). self.line = line_number('main.cpp', '// Set break point at this line.')