From: Nitesh Jain Date: Tue, 25 Apr 2017 06:12:59 +0000 (+0000) Subject: [LLDB][MIPS] Fix typo in TestStepOverWatchpoint.py. X-Git-Tag: llvmorg-5.0.0-rc1~6757 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b43729bc39b3df959d58864f20c54b659947ca04;p=platform%2Fupstream%2Fllvm.git [LLDB][MIPS] Fix typo in TestStepOverWatchpoint.py. Subscribers: jaydeep, bhushan, lldb-commits, slthakur llvm-svn: 301295 --- diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/step_over_watchpoint/TestStepOverWatchpoint.py b/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/step_over_watchpoint/TestStepOverWatchpoint.py index f1d7acf..1565770 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/step_over_watchpoint/TestStepOverWatchpoint.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/step_over_watchpoint/TestStepOverWatchpoint.py @@ -89,7 +89,7 @@ class TestStepOverWatchpoint(TestBase): # resolve_location=True, read=False, write=True write_watchpoint = write_value.Watch(True, False, True, error) - self.assertTrue(read_watchpoint, "Failed to set write watchpoint.") + self.assertTrue(write_watchpoint, "Failed to set write watchpoint.") self.assertTrue(error.Success(), "Error while setting watchpoint: %s" % error.GetCString())