Skip to content

Commit bf6c328

Browse files
committed
[lldb-dap] add review changes
1 parent 6e9df05 commit bf6c328

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

lldb/test/API/tools/lldb-dap/invalidated-event/TestDAP_invalidatedEvent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def test_invalidated_stack_area_event(self):
4747
self.assertEqual(
4848
thread_id,
4949
event_body["threadId"],
50-
f"Expected the event from thread {thread_id}.",
50+
f"Expected the event from thread {thread_id}.",
5151
)
5252

5353
# confirm we are back at the main frame.

lldb/test/API/tools/lldb-dap/invalidated-event/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ int main() {
66
const int result = add(first, second);
77

88
return 0;
9-
}
9+
}

lldb/test/API/tools/lldb-dap/invalidated-event/other.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ int add(int a, int b) {
77
int result = first + second;
88
return result;
99
}
10-
#endif // OTHER_H
10+
#endif // OTHER_H

lldb/tools/lldb-dap/EventHelper.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
#include "Protocol/ProtocolRequests.h"
1616
#include "Protocol/ProtocolTypes.h"
1717
#include "lldb/API/SBFileSpec.h"
18-
#include "lldb/lldb-defines.h"
1918
#include "llvm/Support/Error.h"
2019
#include <utility>
2120

0 commit comments

Comments
 (0)