[LLDB][MIPS] Fix typo in TestStepOverWatchpoint.py.
authorNitesh Jain <nitesh.jain@imgtec.com>
Tue, 25 Apr 2017 06:12:59 +0000 (06:12 +0000)
committerNitesh Jain <nitesh.jain@imgtec.com>
Tue, 25 Apr 2017 06:12:59 +0000 (06:12 +0000)
Subscribers: jaydeep, bhushan, lldb-commits, slthakur
llvm-svn: 301295

lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/step_over_watchpoint/TestStepOverWatchpoint.py

index f1d7acf..1565770 100644 (file)
@@ -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())