Skip to content

Commit

Permalink
hunting test failure in github actions
Browse files Browse the repository at this point in the history
Signed-off-by: Ceki Gulcu <ceki@qos.ch>
  • Loading branch information
ceki committed Sep 6, 2024
1 parent f629363 commit 739ad3c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -305,11 +305,11 @@ public int compare(File f0, File f1) {
}
});

//StatusPrinter.print(context);
//foundFiles.forEach(f -> System.out.println(""+f+ " "+f.length()));
StatusPrinter.print(context);
foundFiles.forEach(f -> System.out.println(""+f+ " "+f.length()));
LongAdder la = new LongAdder();
foundFiles.forEach(f -> la.add(f.length()));
//System.out.println("Sum: "+la.sum());
System.out.println("Sum: "+la.sum());

assertTrue(la.sum() < sizeCap);

Expand Down

0 comments on commit 739ad3c

Please sign in to comment.