summaryrefslogtreecommitdiff
path: root/qpid/java/systests
diff options
context:
space:
mode:
authorAidan Skinner <aidan@apache.org>2008-10-17 16:06:06 +0000
committerAidan Skinner <aidan@apache.org>2008-10-17 16:06:06 +0000
commitcbd4b306577e57075b47f8825e8fc46b3966ddf4 (patch)
tree0457523c078c337580cbc07519faf8095fd6becf /qpid/java/systests
parente8b912389729d6af79ab99bd555afa28acf277bc (diff)
downloadqpid-python-cbd4b306577e57075b47f8825e8fc46b3966ddf4.tar.gz
s/setPrefecthLimits/setPrefetchLimits
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@705654 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/systests')
-rw-r--r--qpid/java/systests/src/main/java/org/apache/qpid/test/client/FlowControlTest.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/qpid/java/systests/src/main/java/org/apache/qpid/test/client/FlowControlTest.java b/qpid/java/systests/src/main/java/org/apache/qpid/test/client/FlowControlTest.java
index 94096e412d..910d546034 100644
--- a/qpid/java/systests/src/main/java/org/apache/qpid/test/client/FlowControlTest.java
+++ b/qpid/java/systests/src/main/java/org/apache/qpid/test/client/FlowControlTest.java
@@ -79,7 +79,7 @@ public class FlowControlTest extends QpidTestCase
Connection consumerConnection = getConnection();
Session consumerSession = consumerConnection.createSession(false, Session.CLIENT_ACKNOWLEDGE);
- ((AMQSession_0_8) consumerSession).setPrefecthLimits(0, 256);
+ ((AMQSession_0_8) consumerSession).setPrefetchLimits(0, 256);
MessageConsumer recv = consumerSession.createConsumer(_queue);
consumerConnection.start();
@@ -152,7 +152,7 @@ public class FlowControlTest extends QpidTestCase
Connection consumerConnection = getConnection();
Session consumerSession1 = consumerConnection.createSession(false, Session.CLIENT_ACKNOWLEDGE);
- ((AMQSession_0_8) consumerSession1).setPrefecthLimits(0, 256);
+ ((AMQSession_0_8) consumerSession1).setPrefetchLimits(0, 256);
MessageConsumer recv1 = consumerSession1.createConsumer(_queue);
consumerConnection.start();
@@ -165,7 +165,7 @@ public class FlowControlTest extends QpidTestCase
assertNull("Second message incorrectly delivered", r2);
Session consumerSession2 = consumerConnection.createSession(false, Session.CLIENT_ACKNOWLEDGE);
- ((AMQSession_0_8) consumerSession2).setPrefecthLimits(0, 256);
+ ((AMQSession_0_8) consumerSession2).setPrefetchLimits(0, 256);
MessageConsumer recv2 = consumerSession2.createConsumer(_queue);
r2 = recv2.receive(100000L);//RECEIVE_TIMEOUT);