summaryrefslogtreecommitdiffstats
path: root/junit/src
diff options
context:
space:
mode:
Diffstat (limited to 'junit/src')
-rw-r--r--junit/src/main/java/junit/extensions/TestDecorator.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/junit/src/main/java/junit/extensions/TestDecorator.java b/junit/src/main/java/junit/extensions/TestDecorator.java
index 6b5144a..cfbd021 100644
--- a/junit/src/main/java/junit/extensions/TestDecorator.java
+++ b/junit/src/main/java/junit/extensions/TestDecorator.java
@@ -5,7 +5,7 @@ import junit.framework.*;
/**
* A Decorator for Tests. Use TestDecorator as the base class
* for defining new test decorators. Test decorator subclasses
- * can be introduced to add behaviour before or after a test
+ * can be introduced to add behavior before or after a test
* is run.
*
*/
@@ -16,7 +16,7 @@ public class TestDecorator extends Assert implements Test {
fTest= test;
}
/**
- * The basic run behaviour.
+ * The basic run behavior.
*/
public void basicRun(TestResult result) {
fTest.run(result);