diff options
Diffstat (limited to 'tests/frontend/__init__.py')
-rw-r--r-- | tests/frontend/__init__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/frontend/__init__.py b/tests/frontend/__init__.py index f1c8c41b8..ad1f9ea92 100644 --- a/tests/frontend/__init__.py +++ b/tests/frontend/__init__.py @@ -5,6 +5,6 @@ from buildstream import _yaml # Shared function to configure the project.conf inline # def configure_project(path, config): - config['name'] = 'test' - config['element-path'] = 'elements' - _yaml.roundtrip_dump(config, os.path.join(path, 'project.conf')) + config["name"] = "test" + config["element-path"] = "elements" + _yaml.roundtrip_dump(config, os.path.join(path, "project.conf")) |