diff --git a/tests/python_bindings/Config_tests/config_test.py b/tests/python_bindings/Config_tests/config_test.py index 55b5629..610cbf3 100644 --- a/tests/python_bindings/Config_tests/config_test.py +++ b/tests/python_bindings/Config_tests/config_test.py @@ -1,20 +1,18 @@ from Jucipp import Config def menu(): - config = Config() menu = Config.Menu() menu.keys = { 'key': 'value', } - config.menu = menu + Config().menu = menu def theme(): theme = Config.Theme() theme.name = "Star Wars" theme.variant = "Instrumental" theme.font = "Imperial" - config = Config() - config.theme = theme + Config().theme = theme def terminal(): terminal = Config.Terminal()