summaryrefslogtreecommitdiffstats
path: root/junit/src
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2010-12-03 11:04:46 -0800
committerElliott Hughes <enh@google.com>2010-12-03 11:04:46 -0800
commit5501a3d4b3d7657c183ed5446fe67fa011fbf70b (patch)
treee4e689529a5326feae55ad6c28ccc73728436119 /junit/src
parent7bf1b45888a5e48919abc720942be648ea3c6b1a (diff)
downloadlibcore-5501a3d4b3d7657c183ed5446fe67fa011fbf70b.zip
libcore-5501a3d4b3d7657c183ed5446fe67fa011fbf70b.tar.gz
libcore-5501a3d4b3d7657c183ed5446fe67fa011fbf70b.tar.bz2
Comments/javadoc should be in en_US, not en_CA.
Change-Id: Ie9dde4971e0a6a8dadd14af43d631158fc488cd8
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);