remove old, broken test script

The script no longer works and was only for a 2011 bug which was fixed.
This commit is contained in:
Kurt Hindenburg
2013-07-12 10:05:49 -04:00
parent 5756ba1e9d
commit fd4b6225fa

View File

@@ -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