diff --git a/src/tests/test_appium.py b/src/tests/test_appium.py index ccc1910..1e9b85e 100644 --- a/src/tests/test_appium.py +++ b/src/tests/test_appium.py @@ -44,7 +44,7 @@ class TestAppium(TestCase): def test_config_creation(self): from src import CONFIG_FILE self.assertFalse(os.path.exists(CONFIG_FILE)) - app.create_node_config('test', '127.0.0.1', 4723, '127.0.0.1', 4444) + app.create_node_config('test', 'Chrome', '127.0.0.1', 4723, '127.0.0.1', 4444) self.assertTrue(os.path.exists(CONFIG_FILE)) os.remove(CONFIG_FILE)