diff options
author | Bananeweizen <bananeweizen@gmx.de> | 2013-12-13 19:48:00 +0100 |
---|---|---|
committer | Bananeweizen <bananeweizen@gmx.de> | 2013-12-13 19:48:00 +0100 |
commit | 50c28124a4cb064efe9556406c9e4a9d9c14e118 (patch) | |
tree | ea51c29658c0ac92c6b31e024b3c699b0088a0ac /tests | |
parent | dd9cc5f5a0673213444da7d3f23a786c20ee3e1e (diff) | |
download | cgeo-50c28124a4cb064efe9556406c9e4a9d9c14e118.zip cgeo-50c28124a4cb064efe9556406c9e4a9d9c14e118.tar.gz cgeo-50c28124a4cb064efe9556406c9e4a9d9c14e118.tar.bz2 |
calendar addon: recognize one more variation of the event time
Diffstat (limited to 'tests')
-rw-r--r-- | tests/src/cgeo/geocaching/GeocacheTest.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/src/cgeo/geocaching/GeocacheTest.java b/tests/src/cgeo/geocaching/GeocacheTest.java index 5d9a31c..cdca9b7 100644 --- a/tests/src/cgeo/geocaching/GeocacheTest.java +++ b/tests/src/cgeo/geocaching/GeocacheTest.java @@ -245,6 +245,8 @@ public class GeocacheTest extends CGeoTestCase { assertTime("text 14:20.", 14, 20); assertTime("<b>14:20</b>", 14, 20); assertTime("<u><em>Uhrzeit:</em></u> 17-20 " + timeHours + "</span></strong>", 17, 00); + assertTime("von 11 bis 13 " + timeHours, 11, 00); + assertTime("from 11 to 13 " + timeHours, 11, 00); } private static void assertTime(final String description, final int hours, final int minutes) { |