summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/tests/fetch.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/tests/fetch.py')
-rw-r--r--bitbake/lib/bb/tests/fetch.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/tests/fetch.py b/bitbake/lib/bb/tests/fetch.py
index a008e7cc5b..e1638bc478 100644
--- a/bitbake/lib/bb/tests/fetch.py
+++ b/bitbake/lib/bb/tests/fetch.py
@@ -2157,7 +2157,7 @@ class GitLfsTest(FetcherTest):
2157 def test_lfs_enabled(self): 2157 def test_lfs_enabled(self):
2158 import shutil 2158 import shutil
2159 2159
2160 uri = 'git://%s;protocol=file;subdir=${S};lfs=1' % self.srcdir 2160 uri = 'git://%s;protocol=file;lfs=1' % self.srcdir
2161 self.d.setVar('SRC_URI', uri) 2161 self.d.setVar('SRC_URI', uri)
2162 2162
2163 # Careful: suppress initial attempt at downloading until 2163 # Careful: suppress initial attempt at downloading until
@@ -2182,7 +2182,7 @@ class GitLfsTest(FetcherTest):
2182 def test_lfs_disabled(self): 2182 def test_lfs_disabled(self):
2183 import shutil 2183 import shutil
2184 2184
2185 uri = 'git://%s;protocol=file;subdir=${S};lfs=0' % self.srcdir 2185 uri = 'git://%s;protocol=file;lfs=0' % self.srcdir
2186 self.d.setVar('SRC_URI', uri) 2186 self.d.setVar('SRC_URI', uri)
2187 2187
2188 # In contrast to test_lfs_enabled(), allow the implicit download 2188 # In contrast to test_lfs_enabled(), allow the implicit download