[lldb][NFC] Remove debug print statement from TestExprDiagnostics.py

This commit is contained in:
Raphael Isemann 2020-01-13 14:17:55 +01:00
parent 6c203149b6
commit c1fbede984
1 changed files with 0 additions and 1 deletions

View File

@ -101,7 +101,6 @@ class ExprDiagnosticsTestCase(TestBase):
self.runCmd("expr @import Foundation")
value = frame.EvaluateExpression("NSLog(1);")
self.assertFalse(value.GetError().Success())
print(value.GetError().GetCString())
# LLDB should print the source line that defines NSLog. To not rely on any
# header paths/line numbers or the actual formatting of the Foundation headers, only look
# for a few tokens in the output.