[lldb/Test] Partially revert assertTrue change

This reverts b3a0c4d7dc for
TestBreakpointHitCount.py because it's now timing out on the Windows
bot. I'm not sure this is the cause, but the substitution doesn't look
correct anyway...
This commit is contained in:
Jonas Devlieghere 2020-02-13 21:55:41 -08:00
parent f10e2df7bc
commit 16bf89267e
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ class BreakpointHitCountTestCase(TestBase):
"There should be a thread stopped due to breakpoint")
frame0 = thread.GetFrameAtIndex(0)
self.assertEquals(frame0.GetFunctionName(), "a(int)" or frame0.GetFunctionName() == "int a(int)");
self.assertTrue(frame0.GetFunctionName() == "a(int)" or frame0.GetFunctionName() == "int a(int)");
process.Continue()
self.assertEqual(process.GetState(), lldb.eStateExited)