summaryrefslogtreecommitdiff
path: root/unittests/Breakpoint
diff options
context:
space:
mode:
Diffstat (limited to 'unittests/Breakpoint')
-rw-r--r--unittests/Breakpoint/BreakpointIDTest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/unittests/Breakpoint/BreakpointIDTest.cpp b/unittests/Breakpoint/BreakpointIDTest.cpp
index a84fa5439527..5cded9912f18 100644
--- a/unittests/Breakpoint/BreakpointIDTest.cpp
+++ b/unittests/Breakpoint/BreakpointIDTest.cpp
@@ -10,7 +10,7 @@
#include "gtest/gtest.h"
#include "lldb/Breakpoint/BreakpointID.h"
-#include "lldb/Utility/Error.h"
+#include "lldb/Utility/Status.h"
#include "llvm/ADT/StringRef.h"
@@ -18,7 +18,7 @@ using namespace lldb;
using namespace lldb_private;
TEST(BreakpointIDTest, StringIsBreakpointName) {
- Error E;
+ Status E;
EXPECT_FALSE(BreakpointID::StringIsBreakpointName("1breakpoint", E));
EXPECT_FALSE(BreakpointID::StringIsBreakpointName("-", E));
EXPECT_FALSE(BreakpointID::StringIsBreakpointName("", E));