summaryrefslogtreecommitdiff
path: root/lldb/unittests/API/SBCommandInterpreterTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/unittests/API/SBCommandInterpreterTest.cpp')
-rw-r--r--lldb/unittests/API/SBCommandInterpreterTest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/unittests/API/SBCommandInterpreterTest.cpp b/lldb/unittests/API/SBCommandInterpreterTest.cpp
index 5651e1c3dc63..c420109e55d6 100644
--- a/lldb/unittests/API/SBCommandInterpreterTest.cpp
+++ b/lldb/unittests/API/SBCommandInterpreterTest.cpp
@@ -60,7 +60,7 @@ TEST_F(SBCommandInterpreterTest, SingleWordCommand) {
SBCommandReturnObject result;
interp.HandleCommand("", result);
EXPECT_FALSE(result.Succeeded());
- EXPECT_STREQ(result.GetError(), "error: No auto repeat.\n");
+ EXPECT_STREQ(result.GetError(), "error: no auto repeat\n");
}
// Now we test a command with autorepeat
@@ -98,7 +98,7 @@ TEST_F(SBCommandInterpreterTest, MultiWordCommand) {
SBCommandReturnObject result;
interp.HandleCommand("", result);
EXPECT_FALSE(result.Succeeded());
- EXPECT_STREQ(result.GetError(), "error: No auto repeat.\n");
+ EXPECT_STREQ(result.GetError(), "error: no auto repeat\n");
}
// We first test a subcommand with autorepeat