File tree Expand file tree Collapse file tree 6 files changed +17
-18
lines changed
main/java/com/github/underscore
test/java/com/github/underscore Expand file tree Collapse file tree 6 files changed +17
-18
lines changed Original file line number Diff line number Diff line change 57
57
<dependency >
58
58
<groupId >org.junit.jupiter</groupId >
59
59
<artifactId >junit-jupiter-engine</artifactId >
60
- <version >[5.12.2,) </version >
60
+ <version >5.13.2 </version >
61
61
</dependency >
62
62
</dependencies >
63
63
</plugin >
129
129
<dependency >
130
130
<groupId >org.junit.jupiter</groupId >
131
131
<artifactId >junit-jupiter-api</artifactId >
132
- <version >[5.12.2,) </version >
132
+ <version >5.13.2 </version >
133
133
<scope >test</scope >
134
134
</dependency >
135
135
<dependency >
136
136
<groupId >org.junit.jupiter</groupId >
137
137
<artifactId >junit-jupiter-engine</artifactId >
138
- <version >[5.12.2,) </version >
138
+ <version >5.13.2 </version >
139
139
<scope >test</scope >
140
140
</dependency >
141
141
<dependency >
142
142
<groupId >org.junit.platform</groupId >
143
143
<artifactId >junit-platform-launcher</artifactId >
144
- <version >[1.12.2,) </version >
144
+ <version >1.13.2 </version >
145
145
<scope >test</scope >
146
146
</dependency >
147
147
<dependency >
Original file line number Diff line number Diff line change 57
57
<dependency >
58
58
<groupId >org.junit.jupiter</groupId >
59
59
<artifactId >junit-jupiter-engine</artifactId >
60
- <version >[5.12.2,) </version >
60
+ <version >5.13.2 </version >
61
61
</dependency >
62
62
</dependencies >
63
63
</plugin >
129
129
<dependency >
130
130
<groupId >org.junit.jupiter</groupId >
131
131
<artifactId >junit-jupiter-api</artifactId >
132
- <version >[5.12.2,) </version >
132
+ <version >5.13.2 </version >
133
133
<scope >test</scope >
134
134
</dependency >
135
135
<dependency >
136
136
<groupId >org.junit.jupiter</groupId >
137
137
<artifactId >junit-jupiter-engine</artifactId >
138
- <version >[5.12.2,) </version >
138
+ <version >5.13.2 </version >
139
139
<scope >test</scope >
140
140
</dependency >
141
141
<dependency >
142
142
<groupId >org.junit.platform</groupId >
143
143
<artifactId >junit-platform-launcher</artifactId >
144
- <version >[1.12.2,) </version >
144
+ <version >1.13.2 </version >
145
145
<scope >test</scope >
146
146
</dependency >
147
147
<dependency >
Original file line number Diff line number Diff line change 58
58
<dependency >
59
59
<groupId >org.junit.jupiter</groupId >
60
60
<artifactId >junit-jupiter-engine</artifactId >
61
- <version >[5.12.2,) </version >
61
+ <version >5.13.2 </version >
62
62
</dependency >
63
63
</dependencies >
64
64
</plugin >
238
238
<dependency >
239
239
<groupId >org.junit.jupiter</groupId >
240
240
<artifactId >junit-jupiter-api</artifactId >
241
- <version >[5.12.2,) </version >
241
+ <version >5.13.2 </version >
242
242
<scope >test</scope >
243
243
</dependency >
244
244
<dependency >
245
245
<groupId >org.junit.jupiter</groupId >
246
246
<artifactId >junit-jupiter-engine</artifactId >
247
- <version >[5.12.2,) </version >
247
+ <version >5.13.2 </version >
248
248
<scope >test</scope >
249
249
</dependency >
250
250
<dependency >
251
251
<groupId >org.junit.platform</groupId >
252
252
<artifactId >junit-platform-launcher</artifactId >
253
- <version >[1.12.2,) </version >
253
+ <version >1.13.2 </version >
254
254
<scope >test</scope >
255
255
</dependency >
256
256
<dependency >
Original file line number Diff line number Diff line change 60
60
<dependency >
61
61
<groupId >org.junit.jupiter</groupId >
62
62
<artifactId >junit-jupiter-engine</artifactId >
63
- <version >[5.12.2,) </version >
63
+ <version >5.13.2 </version >
64
64
</dependency >
65
65
</dependencies >
66
66
</plugin >
189
189
<dependency >
190
190
<groupId >org.junit.jupiter</groupId >
191
191
<artifactId >junit-jupiter-api</artifactId >
192
- <version >[5.12.2,) </version >
192
+ <version >5.13.2 </version >
193
193
<scope >test</scope >
194
194
</dependency >
195
195
<dependency >
196
196
<groupId >org.junit.jupiter</groupId >
197
197
<artifactId >junit-jupiter-engine</artifactId >
198
- <version >[5.12.2,) </version >
198
+ <version >5.13.2 </version >
199
199
<scope >test</scope >
200
200
</dependency >
201
201
<dependency >
202
202
<groupId >org.junit.platform</groupId >
203
203
<artifactId >junit-platform-launcher</artifactId >
204
- <version >[1.12.2,) </version >
204
+ <version >1.13.2 </version >
205
205
<scope >test</scope >
206
206
</dependency >
207
207
<dependency >
Original file line number Diff line number Diff line change 60
60
*/
61
61
@ SuppressWarnings ({
62
62
"java:S106" ,
63
- "java:S2095" ,
64
63
"java:S2189" ,
65
64
"java:S2272" ,
66
65
"java:S2789" ,
Original file line number Diff line number Diff line change @@ -199,7 +199,7 @@ void defer() {
199
199
return null ;
200
200
});
201
201
assertEquals (0 , counter [0 ].intValue (), "incr was debounced" );
202
- await ().atMost (240 , TimeUnit .MILLISECONDS )
202
+ await ().atMost (400 , TimeUnit .MILLISECONDS )
203
203
.until (
204
204
() -> {
205
205
assertEquals (1 , counter [0 ].intValue (), "incr was debounced" );
You can’t perform that action at this time.
0 commit comments