File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ class RunPara {
4444 void should_run_argument_runners_in_parallel () throws Exception {
4545 var logs = new ArrayList <String >();
4646 Runner .runPara (() -> {
47- try { Thread .sleep (100 ); } catch (InterruptedException e ) {}
47+ try { Thread .sleep (200 ); } catch (InterruptedException e ) {}
4848 logs .add ("1" );
4949 }, () -> {
5050 try { Thread .sleep (20 ); } catch (InterruptedException e ) {}
@@ -114,7 +114,7 @@ class Para {
114114 void should_run_holding_runners_in_parallel () throws Exception {
115115 var logs = new ArrayList <String >();
116116 var runner = Runner .para (() -> {
117- try { Thread .sleep (100 ); } catch (InterruptedException e ) {}
117+ try { Thread .sleep (200 ); } catch (InterruptedException e ) {}
118118 logs .add ("1" );
119119 }, () -> {
120120 try { Thread .sleep (20 ); } catch (InterruptedException e ) {}
You can’t perform that action at this time.
0 commit comments