diff options
Diffstat (limited to 'boot/test.py')
| -rw-r--r-- | boot/test.py | 4 |
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): |
