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:14 +0100 |
commit | f9bad5aeb507f5b3c1346118011c7766c44d9ba4 (patch) | |
tree | 6e861638d6bbac2eef82f644073552dd12a78ddb /meta/lib | |
parent | 52d5ab7fcea7028ff1d10b3e2416c0179128ba71 (diff) | |
download | openembedded-core-f9bad5aeb507f5b3c1346118011c7766c44d9ba4.tar.gz openembedded-core-f9bad5aeb507f5b3c1346118011c7766c44d9ba4.tar.bz2 openembedded-core-f9bad5aeb507f5b3c1346118011c7766c44d9ba4.zip |
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].
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-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): 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 |