aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src')
-rw-r--r--tests/src/cgeo/geocaching/LazyInitialilzedListTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/src/cgeo/geocaching/LazyInitialilzedListTest.java b/tests/src/cgeo/geocaching/LazyInitialilzedListTest.java
index bc4b6af..d129838 100644
--- a/tests/src/cgeo/geocaching/LazyInitialilzedListTest.java
+++ b/tests/src/cgeo/geocaching/LazyInitialilzedListTest.java
@@ -44,7 +44,7 @@ public class LazyInitialilzedListTest extends AndroidTestCase {
public static void testCallOnce() {
final MyList l = new MyList(0);
- assertEquals("call() must not called prematurely", 0, l.getCounter());
+ assertEquals("call() must not be called prematurely", 0, l.getCounter());
l.size();
assertEquals("call() must be called when needed", 1, l.getCounter());
l.size();