diff options
Diffstat (limited to 'packages/Python/lldbsuite/test/lang/objc/objc-super/TestObjCSuper.py')
-rw-r--r-- | packages/Python/lldbsuite/test/lang/objc/objc-super/TestObjCSuper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/Python/lldbsuite/test/lang/objc/objc-super/TestObjCSuper.py b/packages/Python/lldbsuite/test/lang/objc/objc-super/TestObjCSuper.py index d1d755e289cdb..5b10bc5b81d65 100644 --- a/packages/Python/lldbsuite/test/lang/objc/objc-super/TestObjCSuper.py +++ b/packages/Python/lldbsuite/test/lang/objc/objc-super/TestObjCSuper.py @@ -28,7 +28,7 @@ class TestObjCSuperMethod(TestBase): def test_with_python_api(self): """Test calling methods on super.""" self.build() - exe = os.path.join(os.getcwd(), "a.out") + exe = self.getBuildArtifact("a.out") target = self.dbg.CreateTarget(exe) self.assertTrue(target, VALID_TARGET) |