Skip to content

Commit 019d52e

Browse files
committed
test: fix bp params
1 parent 0f87c26 commit 019d52e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/test/kotlin/spp/protocol/marshall/ProtocolMarshallerTest.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ class ProtocolMarshallerTest {
6868
CommandType.ADD_LIVE_INSTRUMENT,
6969
setOf(
7070
LiveBreakpoint(
71+
null,
7172
LiveSourceLocation("source", 1),
7273
"condition",
7374
System.currentTimeMillis(),

src/test/kotlin/spp/protocol/service/listen/LiveInstrumentListenerTest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,13 +118,13 @@ class LiveInstrumentListenerTest {
118118

119119
val bpRemoved1 = LiveInstrumentRemoved(
120120
LiveBreakpoint(
121-
LiveSourceLocation("test.location1", 1)
121+
location = LiveSourceLocation("test.location1", 1)
122122
),
123123
Instant.now()
124124
)
125125
val bpRemoved2 = LiveInstrumentRemoved(
126126
LiveBreakpoint(
127-
LiveSourceLocation("test.location2", 2)
127+
location = LiveSourceLocation("test.location2", 2)
128128
),
129129
Instant.now()
130130
)

0 commit comments

Comments
 (0)