aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorkoem <koem@petoria.de>2013-03-18 16:22:48 +1300
committerkoem <koem@petoria.de>2013-03-18 16:48:48 +1300
commitfb6ae7ff0528ff60a561d4eab00e55ad7acf3a2b (patch)
tree2bf2f941cedfc69e049262ea4708b1e206a2d73e /tests
parentd760beed1625442fe268f05193556e37a4a7da5a (diff)
downloadcgeo-fb6ae7ff0528ff60a561d4eab00e55ad7acf3a2b.zip
cgeo-fb6ae7ff0528ff60a561d4eab00e55ad7acf3a2b.tar.gz
cgeo-fb6ae7ff0528ff60a561d4eab00e55ad7acf3a2b.tar.bz2
Fixes #2538 - German Umlauts in image caption and description
changes: * post requests are done with UTF-8 now * deleted conversion of non latin characters * deleted corresponding test method and class
Diffstat (limited to 'tests')
-rw-r--r--tests/src/cgeo/geocaching/utils/HtmlUtilsTest.java11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/src/cgeo/geocaching/utils/HtmlUtilsTest.java b/tests/src/cgeo/geocaching/utils/HtmlUtilsTest.java
deleted file mode 100644
index 52b816e..0000000
--- a/tests/src/cgeo/geocaching/utils/HtmlUtilsTest.java
+++ /dev/null
@@ -1,11 +0,0 @@
-package cgeo.geocaching.utils;
-
-import junit.framework.TestCase;
-
-public class HtmlUtilsTest extends TestCase {
-
- public static void testNonLatinCharConv() {
- final String res = HtmlUtils.convertNonLatinCharactersToHTML("abcΦςቡぢれ");
- assertEquals("abc&#934;&#962;&#4705;&#12386;&#12428;", res);
- }
-}