diff options
author | Tristan Maat <tristan.maat@codethink.co.uk> | 2017-09-07 14:59:23 +0100 |
---|---|---|
committer | Tristan Maat <tristan.maat@codethink.co.uk> | 2017-09-14 11:05:21 +0100 |
commit | 6bb468a00d76896a0a4da1e5e02bd9c0023ff954 (patch) | |
tree | dd5c14f7dc436e755414e8ab97be6b9fc133c9b0 /tests/sources/git.py | |
parent | d56f472ddc6b6ff364aaa74cf1dac30be0d774de (diff) | |
download | buildstream-24-better-validation-for-loaded-yaml.tar.gz |
Fix affected test cases24-better-validation-for-loaded-yaml
Diffstat (limited to 'tests/sources/git.py')
-rw-r--r-- | tests/sources/git.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/sources/git.py b/tests/sources/git.py index 43a64a0c8..a3649a863 100644 --- a/tests/sources/git.py +++ b/tests/sources/git.py @@ -80,9 +80,9 @@ class GitSubmoduleSetup(GitSetup): if url: template += " ref: {ref}\n" - template += "submodules:\n" + \ - " subrepo:\n" + \ - " url: {subrepo}\n" + template += " submodules:\n" + \ + " subrepo:\n" + \ + " url: {subrepo}\n" final = template.format(url=url, ref=ref, track=track, subrepo=self.subrepo_url) |