diff options
Diffstat (limited to 'client/test.py')
| -rw-r--r-- | client/test.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/test.py b/client/test.py index 7f31f37..0034974 100644 --- a/client/test.py +++ b/client/test.py @@ -86,7 +86,8 @@ class TestMic(unittest.TestCase): class TestG2P(unittest.TestCase): def setUp(self): - self.g2pconverter = g2p.PhonetisaurusG2P(**g2p.PhonetisaurusG2P.get_config()) + self.g2pconverter = g2p.PhonetisaurusG2P( + **g2p.PhonetisaurusG2P.get_config()) self.words = ['GOOD', 'BAD', 'UGLY'] def testTranslateWord(self): |
