aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMichael Keppler <michael.keppler@gmx.de>2014-04-22 11:47:03 +0200
committerMichael Keppler <michael.keppler@gmx.de>2014-04-22 11:47:03 +0200
commit333edae179024c6900a1d3f98e252579859f16ee (patch)
treeb1abdab04a6a18cc4c4659fd138814b8625f644c /tests
parent0463307783b48b3abca7abfe72da27ca33e6877f (diff)
downloadcgeo-333edae179024c6900a1d3f98e252579859f16ee.zip
cgeo-333edae179024c6900a1d3f98e252579859f16ee.tar.gz
cgeo-333edae179024c6900a1d3f98e252579859f16ee.tar.bz2
typo
Diffstat (limited to 'tests')
-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();