File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/test/java/org/scion/multiping Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ class MyWithHandler extends WithHandler {
126
126
() -> new MySync (3 ),
127
127
MyWithHandler ::new ,
128
128
Helper ::isdAsList ,
129
- () -> 0L ,
129
+ () -> Long . valueOf ( 0 ) ,
130
130
(ia , addr ) -> PathHelper .createPaths (3 ));
131
131
PingAll ping = new PingAll (PingAll .Policy .FASTEST_TR_ASYNC , p );
132
132
ResultSummary summary = ping .run ();
@@ -156,7 +156,7 @@ class MyWithHandler extends WithHandler {
156
156
() -> new MySync (3 ),
157
157
MyWithHandler ::new ,
158
158
Helper ::isdAsList ,
159
- () -> 0L ,
159
+ () -> Long . valueOf ( 0 ) ,
160
160
(ia , addr ) -> PathHelper .createPaths (3 ));
161
161
PingAll ping = new PingAll (PingAll .Policy .FASTEST_TR_ASYNC , p );
162
162
ResultSummary summary = ping .run ();
@@ -177,7 +177,7 @@ class MyWithHandler extends WithIOError {
177
177
() -> new MySync (3 ),
178
178
MyWithHandler ::new ,
179
179
Helper ::isdAsList ,
180
- () -> 0L ,
180
+ () -> Long . valueOf ( 0 ) ,
181
181
(ia , addr ) -> PathHelper .createPaths (3 ));
182
182
PingAll ping = new PingAll (PingAll .Policy .FASTEST_TR_ASYNC , p );
183
183
ResultSummary summary = ping .run ();
You can’t perform that action at this time.
0 commit comments