File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
core/src/test/java/org/testcontainers/utility Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 11package org .testcontainers .utility ;
22
3- import org .junit .Test ;
3+ import org .junit .jupiter . api . Test ;
44import org .testcontainers .utility .ducttape .Timeouts ;
55
66import java .util .concurrent .TimeUnit ;
1111 * Verifies that {@link Timeouts} works correctly across shutdown/reuse cycles.
1212 * After {@code shutdown()} the executor is re-created on next use.
1313 */
14- public class TimeoutsShutdownTest {
14+ class TimeoutsShutdownTest {
1515
1616 @ Test
17- public void timeoutsWorkAfterShutdown () {
17+ void timeoutsWorkAfterShutdown () {
1818 // First use
1919 String result1 = Timeouts .getWithTimeout (5 , TimeUnit .SECONDS , () -> "container-1-ready" );
2020 assertThat (result1 ).isEqualTo ("container-1-ready" );
You can’t perform that action at this time.
0 commit comments