diff options
Diffstat (limited to 'lldb/test/python_api/lldbutil/TestLLDBIterator.py')
| -rw-r--r-- | lldb/test/python_api/lldbutil/TestLLDBIterator.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/test/python_api/lldbutil/TestLLDBIterator.py b/lldb/test/python_api/lldbutil/TestLLDBIterator.py index 0b2b3dd289d..51e852e9644 100644 --- a/lldb/test/python_api/lldbutil/TestLLDBIterator.py +++ b/lldb/test/python_api/lldbutil/TestLLDBIterator.py @@ -63,8 +63,8 @@ class LLDBIteratorTestCase(TestBase): if self.TraceOn(): print "yours[%d]='%s'" % (i, get_description(yours[i])) print "mine[%d]='%s'" % (i, get_description(mine[i])) - self.assertTrue(yours[i].GetUUIDString() == mine[i].GetUUIDString(), - "UUID of yours[{0}] and mine[{0}] matches".format(i)) + self.assertTrue(yours[i] == mine[i], + "UUID+FileSpec of yours[{0}] and mine[{0}] matches".format(i)) def lldb_iter_2(self): exe = os.path.join(os.getcwd(), "a.out") |

