summaryrefslogtreecommitdiff
path: root/boot/test.py
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2014-08-22 09:32:35 +0800
committerschneefux <schneefux+commit@schneefux.xyz>2014-08-22 09:32:35 +0800
commit0d4bb63b3727e44c973d167be0d82c4c062648f6 (patch)
tree2cbdddfc90fef1c345582b576dd5c45da84f46d7 /boot/test.py
parent71ac7e8d50a3bc9ee814f334b938cda336377d4f (diff)
downloadjasper-client-0d4bb63b3727e44c973d167be0d82c4c062648f6.tar.gz
jasper-client-0d4bb63b3727e44c973d167be0d82c4c062648f6.zip
Minor style fixes: removed unused imports, commented-out code, etc.
Diffstat (limited to 'boot/test.py')
-rw-r--r--boot/test.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/boot/test.py b/boot/test.py
index af5f982..3d93936 100644
--- a/boot/test.py
+++ b/boot/test.py
@@ -16,10 +16,12 @@ sys.path.append(mod_path)
import g2p
+
class UnorderedList(list):
+
def __eq__(self, other):
return sorted(self) == sorted(other)
-
+
class TestVocabCompiler(unittest.TestCase):