From 46f8c9b51dc7c405877986b7086cd84b528a3b8e Mon Sep 17 00:00:00 2001 From: felmer <felmer> Date: Thu, 24 Jan 2013 08:17:10 +0000 Subject: [PATCH] PersistentExtendedBlockingQueueDecoratorTest.testThreadSafetiness() adding only 1000 items to the queue instead of 10000. Should fix broken CI. SVN: 28176 --- .../common/io/PersistentExtendedBlockingQueueDecoratorTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/sourceTest/java/ch/systemsx/cisd/common/io/PersistentExtendedBlockingQueueDecoratorTest.java b/common/sourceTest/java/ch/systemsx/cisd/common/io/PersistentExtendedBlockingQueueDecoratorTest.java index ab317812e83..d41180ef5cb 100644 --- a/common/sourceTest/java/ch/systemsx/cisd/common/io/PersistentExtendedBlockingQueueDecoratorTest.java +++ b/common/sourceTest/java/ch/systemsx/cisd/common/io/PersistentExtendedBlockingQueueDecoratorTest.java @@ -284,7 +284,7 @@ public class PersistentExtendedBlockingQueueDecoratorTest } }).start(); Random random = new Random(37); - for (int i = 0; i < 10000; i++) + for (int i = 0; i < 1000; i++) { try { -- GitLab