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-08 10:46:26 +0100 |
commit | dc8c5fb9fbbe4bacffbd84568913b4224365398c (patch) | |
tree | 9b5d3a7a327b08cd169a520bb989ea14bec8778d /tests/sources/git.py | |
parent | be94c716210b7e9530be67dd20a8c625d7b731ae (diff) | |
download | buildstream-validation.tar.gz |
Fix affected test casesvalidation
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) |