diff --git a/gooey/tests/all_widgets.py b/gooey/tests/all_widgets.py index a140b05..bf5c8cb 100644 --- a/gooey/tests/all_widgets.py +++ b/gooey/tests/all_widgets.py @@ -7,7 +7,8 @@ from gooey import GooeyParser show_sidebar=True, dump_build_config=True, show_success_modal=False, - force_stop_is_error=False + force_stop_is_error=False, + language='chinese' ) def main(): desc = "Example application to show Gooey's various widgets" diff --git a/gooey/tests/test_integration.py b/gooey/tests/test_integration.py index cd0780d..75b99fb 100644 --- a/gooey/tests/test_integration.py +++ b/gooey/tests/test_integration.py @@ -6,7 +6,6 @@ from concurrent import futures from gooey.gui import application from gooey.gui.lang.i18n import _ - class TestGooeyIntegration(unittest.TestCase): """ A few quick integration tests that exercise Gooey's various run modes @@ -46,7 +45,7 @@ class TestGooeyIntegration(unittest.TestCase): def test_gooeyNormalRun(self): """ Tests the happy path through the default run mode of Gooey """ self.performTest('./gooey/tests/gooey_config__normal.json', self.gooeySanityTest) - + def test_gooeySubparserMode(self): """ Tests the happy path through the subparser run mode of Gooey """ self.performTest('./gooey/tests/gooey_config__subparser.json', self.gooeySanityTest)