File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
test/src/com/rabbitmq/client/test Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,6 @@ public static TestSuite suite() {
43
43
suite .addTest (AMQConnectionTest .suite ());
44
44
suite .addTest (ValueOrExceptionTest .suite ());
45
45
suite .addTest (BrokenFramesTest .suite ());
46
- suite .addTestSuite (Bug20004Test .class );
47
46
return suite ;
48
47
}
49
48
}
Original file line number Diff line number Diff line change 28
28
//
29
29
// Contributor(s): ______________________________________.
30
30
//
31
- package com .rabbitmq .client .test ;
31
+ package com .rabbitmq .client .test . functional ;
32
32
33
33
import java .io .IOException ;
34
34
35
- import com .rabbitmq .client .test .functional .BrokerTestCase ;
36
-
37
35
/**
38
36
* Test for bug 20004 - deadlock through internal synchronization on
39
- * the channel object.
37
+ * the channel object. This is more properly a unit test, but since it
38
+ * requires a connection to a broker, it's grouped with the functional
39
+ * tests.
40
40
*/
41
41
public class Bug20004Test extends BrokerTestCase {
42
42
public Exception caughtException = null ;
Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ public static TestSuite suite() {
46
46
suite .addTestSuite (RequeueOnChannelClose .class );
47
47
suite .addTestSuite (DurableOnTransient .class );
48
48
suite .addTestSuite (NoRequeueOnCancel .class );
49
+ suite .addTestSuite (Bug20004Test .class );
49
50
return suite ;
50
51
}
51
52
}
You can’t perform that action at this time.
0 commit comments