diff options
author | Benjamin Schubert <ben.c.schubert@gmail.com> | 2019-06-28 17:01:23 +0100 |
---|---|---|
committer | bst-marge-bot <marge-bot@buildstream.build> | 2019-07-15 14:14:03 +0000 |
commit | f7b461220ec2f1af3966ace12c21334f1f3b6457 (patch) | |
tree | 2a3bb23cb1f26aa55fac6d5df2f95fb862755685 /tests/sourcecache/config.py | |
parent | 9e5facfab87268a80cb02f2de87897764a416c8a (diff) | |
download | buildstream-f7b461220ec2f1af3966ace12c21334f1f3b6457.tar.gz |
tests: Change all calls to _yaml.dump to _yaml.rountrip_dump
Now that both are equivalent, we can skip the sanitization part before
the yaml call.
Diffstat (limited to 'tests/sourcecache/config.py')
-rw-r--r-- | tests/sourcecache/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/sourcecache/config.py b/tests/sourcecache/config.py index 7c33adbe0..2ab11e9f9 100644 --- a/tests/sourcecache/config.py +++ b/tests/sourcecache/config.py @@ -53,7 +53,7 @@ def test_missing_certs(cli, datafiles, config_key, config_value): } } project_conf_file = os.path.join(project, 'project.conf') - _yaml.dump(project_conf, project_conf_file) + _yaml.roundtrip_dump(project_conf, project_conf_file) # Use `pull` here to ensure we try to initialize the remotes, triggering the error # |