diff options
Diffstat (limited to 'lldb/test/lldbtest.py')
-rw-r--r-- | lldb/test/lldbtest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/lldbtest.py b/lldb/test/lldbtest.py index 29404a805fd..b8e29a7b5f4 100644 --- a/lldb/test/lldbtest.py +++ b/lldb/test/lldbtest.py @@ -1584,7 +1584,7 @@ class Base(unittest2.TestCase): During test execution, there might be cases where we don't want to show the standard output to the user. For example, - self.runCmd(r'''sc print "\n\n\tHello!\n"''') + self.runCmd(r'''sc print("\n\n\tHello!\n")''') tests whether command abbreviation for 'script' works or not. There is no need to show the 'Hello' output to the user as long as the 'script' command |