From fd4b6225fa4db45051ced554f60c0ce06ccc8fcd Mon Sep 17 00:00:00 2001 From: Kurt Hindenburg Date: Fri, 12 Jul 2013 10:05:49 -0400 Subject: [PATCH] remove old, broken test script The script no longer works and was only for a 2011 bug which was fixed. --- tests/nfd_unicode.py | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 tests/nfd_unicode.py diff --git a/tests/nfd_unicode.py b/tests/nfd_unicode.py deleted file mode 100644 index 9b27c502b..000000000 --- a/tests/nfd_unicode.py +++ /dev/null @@ -1,16 +0,0 @@ -#! /usr/bin/python -import unicodedata - -# https://bugs.kde.org/show_bug.cgi?id=96536 - -print "The same word should be displayed 4 times." -print -u = u'Ha\u0308mikon' -u1 = unicodedata.normalize('NFC', u) -u2 = unicodedata.normalize('NFD', u) -u3 = unicodedata.normalize('NFKD', u) -u4 = unicodedata.normalize('NFKC', u) -print u1, u2, u3, u4 - - -