diff options
| author | Martin Ritchie <ritchiem@apache.org> | 2009-07-23 12:56:44 +0000 |
|---|---|---|
| committer | Martin Ritchie <ritchiem@apache.org> | 2009-07-23 12:56:44 +0000 |
| commit | ba37cf68bb4fc8008bb62e5ec97d0ff22f35e537 (patch) | |
| tree | 616caaca6dbf3051264023c9e835ed92cd648f4a | |
| parent | 37999b6e9788eef674e845e6a8f7e8f8be2c3865 (diff) | |
| download | qpid-python-ba37cf68bb4fc8008bb62e5ec97d0ff22f35e537.tar.gz | |
QPID-1992 : Fixed spelling errors
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@797049 13f79535-47bb-0310-9956-ffa450edef68
2 files changed, 29 insertions, 4 deletions
diff --git a/java/broker/src/test/java/org/apache/qpid/server/logging/messages/BindingMessagesTest.java b/java/broker/src/test/java/org/apache/qpid/server/logging/messages/BindingMessagesTest.java new file mode 100644 index 0000000000..6e23b4a52f --- /dev/null +++ b/java/broker/src/test/java/org/apache/qpid/server/logging/messages/BindingMessagesTest.java @@ -0,0 +1,25 @@ +/* + * + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + * + */ +package org.apache.qpid.server.logging.messages; + +public class BindingMessagesTest +{ +} diff --git a/java/broker/src/test/java/org/apache/qpid/server/logging/subjects/AbstractTestLogSubject.java b/java/broker/src/test/java/org/apache/qpid/server/logging/subjects/AbstractTestLogSubject.java index 04081db8e3..02cdbdbe6a 100644 --- a/java/broker/src/test/java/org/apache/qpid/server/logging/subjects/AbstractTestLogSubject.java +++ b/java/broker/src/test/java/org/apache/qpid/server/logging/subjects/AbstractTestLogSubject.java @@ -57,9 +57,9 @@ public abstract class AbstractTestLogSubject extends TestCase RootMessageLogger rootLogger = new RootMessageLoggerImpl(serverConfig, logger); - LogActor actor_actor = new TestBlankActor(rootLogger); + LogActor actor = new TestBlankActor(rootLogger); - actor_actor.message(_subject, new LogMessage() + actor.message(_subject, new LogMessage() { public String toString() { @@ -228,7 +228,7 @@ public abstract class AbstractTestLogSubject extends TestCase { List<Object> logs = performLog(); - assertEquals("Log has to many messagse", 1, logs.size()); + assertEquals("Log has incorrect message count", 1, logs.size()); validateLogStatement(String.valueOf(logs.get(0))); } @@ -252,7 +252,7 @@ public abstract class AbstractTestLogSubject extends TestCase List<Object> logs = performLog(); - assertEquals("Log has to many messagse", 0, logs.size()); + assertEquals("Log has incorrect message count", 0, logs.size()); } } |
