Skip to content

Commit bf646d3

Browse files
author
Tilmann Zäschke
committed
Refactoring and fixes
1 parent a9c73a1 commit bf646d3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/java/org/scion/multiping/PingAllTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ class MyWithHandler extends WithHandler {
126126
() -> new MySync(3),
127127
MyWithHandler::new,
128128
Helper::isdAsList,
129-
() -> 0L,
129+
() -> Long.valueOf(0),
130130
(ia, addr) -> PathHelper.createPaths(3));
131131
PingAll ping = new PingAll(PingAll.Policy.FASTEST_TR_ASYNC, p);
132132
ResultSummary summary = ping.run();
@@ -156,7 +156,7 @@ class MyWithHandler extends WithHandler {
156156
() -> new MySync(3),
157157
MyWithHandler::new,
158158
Helper::isdAsList,
159-
() -> 0L,
159+
() -> Long.valueOf(0),
160160
(ia, addr) -> PathHelper.createPaths(3));
161161
PingAll ping = new PingAll(PingAll.Policy.FASTEST_TR_ASYNC, p);
162162
ResultSummary summary = ping.run();
@@ -177,7 +177,7 @@ class MyWithHandler extends WithIOError {
177177
() -> new MySync(3),
178178
MyWithHandler::new,
179179
Helper::isdAsList,
180-
() -> 0L,
180+
() -> Long.valueOf(0),
181181
(ia, addr) -> PathHelper.createPaths(3));
182182
PingAll ping = new PingAll(PingAll.Policy.FASTEST_TR_ASYNC, p);
183183
ResultSummary summary = ping.run();

0 commit comments

Comments
 (0)