diff options
Diffstat (limited to 'lldb/test/functionalities/command_regex/TestCommandRegex.py')
-rw-r--r-- | lldb/test/functionalities/command_regex/TestCommandRegex.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/test/functionalities/command_regex/TestCommandRegex.py b/lldb/test/functionalities/command_regex/TestCommandRegex.py index 6052b0f7f64..5e9950f98a9 100644 --- a/lldb/test/functionalities/command_regex/TestCommandRegex.py +++ b/lldb/test/functionalities/command_regex/TestCommandRegex.py @@ -13,9 +13,9 @@ class CommandRegexTestCase(TestBase): mydir = TestBase.compute_mydir(__file__) def test_command_regex(self): - """Test a simple scenario of 'command regexp' invocation and subsequent use.""" + """Test a simple scenario of 'command regex' invocation and subsequent use.""" prompt = "(lldb) " - regex_prompt = "Enter regular expressions in the form 's/<regex>/<subst>/' and terminate with an empty line:\r\n" + regex_prompt = "Enter one of more sed substitution commands in the form: 's/<regex>/<subst>/'.\r\nTerminate the substitution list with an empty line.\r\n" regex_prompt1 = "\r\n" child = pexpect.spawn('%s %s' % (self.lldbHere, self.lldbOption)) |