mirror of
https://git.yoctoproject.org/poky
synced 2026-05-08 05:09:24 +00:00
oe-selftest: devtool: fix broken URL in test_devtool_add_fetch
I already had the file fetched from some previous work and thus it didn't attempt to download the invalid URL when I tested it earlier. Part of the fix for [YOCTO #7729]. (From OE-Core rev: f9bad5aeb507f5b3c1346118011c7766c44d9ba4) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
78ec80a39f
commit
b7cff751fd
@@ -175,7 +175,7 @@ class DevtoolTests(oeSelfTest):
|
||||
tempdir = tempfile.mkdtemp(prefix='devtoolqa')
|
||||
self.track_for_cleanup(tempdir)
|
||||
testver = '0.23'
|
||||
url = 'https://pypi.python.org/packages/source/J/MarkupSafe/MarkupSafe-%s.tar.gz' % testver
|
||||
url = 'https://pypi.python.org/packages/source/M/MarkupSafe/MarkupSafe-%s.tar.gz' % testver
|
||||
testrecipe = 'python-markupsafe'
|
||||
srcdir = os.path.join(tempdir, testrecipe)
|
||||
# Test devtool add
|
||||
|
||||
Reference in New Issue
Block a user