diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2015-05-07 14:52:23 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-05-07 14:59:43 +0100 |
commit | b7cff751fd6fbfec5d7999978475841f057041af (patch) | |
tree | 840da0f4c4884f9a43abfc4936bbd6bee03690a0 | |
parent | 78ec80a39f91323c14f81febbfdf9752ce570e70 (diff) | |
download | poky-b7cff751fd6fbfec5d7999978475841f057041af.tar.gz |
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>
-rw-r--r-- | meta/lib/oeqa/selftest/devtool.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/devtool.py b/meta/lib/oeqa/selftest/devtool.py index 1a506d97ce..2af6114948 100644 --- a/meta/lib/oeqa/selftest/devtool.py +++ b/meta/lib/oeqa/selftest/devtool.py | |||
@@ -175,7 +175,7 @@ class DevtoolTests(oeSelfTest): | |||
175 | tempdir = tempfile.mkdtemp(prefix='devtoolqa') | 175 | tempdir = tempfile.mkdtemp(prefix='devtoolqa') |
176 | self.track_for_cleanup(tempdir) | 176 | self.track_for_cleanup(tempdir) |
177 | testver = '0.23' | 177 | testver = '0.23' |
178 | url = 'https://pypi.python.org/packages/source/J/MarkupSafe/MarkupSafe-%s.tar.gz' % testver | 178 | url = 'https://pypi.python.org/packages/source/M/MarkupSafe/MarkupSafe-%s.tar.gz' % testver |
179 | testrecipe = 'python-markupsafe' | 179 | testrecipe = 'python-markupsafe' |
180 | srcdir = os.path.join(tempdir, testrecipe) | 180 | srcdir = os.path.join(tempdir, testrecipe) |
181 | # Test devtool add | 181 | # Test devtool add |