diff options
Diffstat (limited to 'test/common/encoding.h')
-rw-r--r-- | test/common/encoding.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/test/common/encoding.h b/test/common/encoding.h index ff445a380a..9b848fa4bc 100644 --- a/test/common/encoding.h +++ b/test/common/encoding.h @@ -346,16 +346,6 @@ class EncodingTestSuite : public CxxTest::TestSuite { TS_ASSERT(result != NULL); TS_ASSERT_SAME_DATA(result, iso_8859_2, 8); free(result); - - result = Common::Encoding::convert("ASCII", "UTF-8", (char *)utf8_2, 11); - TS_ASSERT(result != NULL); - TS_ASSERT_SAME_DATA(result, "Salecek", 8); - free(result); - - result = Common::Encoding::convert("ASCII", "iso-8859-2", (char *)iso_8859_2, 7); - TS_ASSERT(result != NULL); - TS_ASSERT_SAME_DATA(result, "Salecek", 8); - free(result); } }; #endif |