[oe-commits] Paul Eggleton : oe-selftest: devtool: fix broken URL in test_devtool_add_fetch

git at git.openembedded.org git at git.openembedded.org
Fri May 8 16:54:09 UTC 2015


Module: openembedded-core.git
Branch: master-next
Commit: f9bad5aeb507f5b3c1346118011c7766c44d9ba4
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=f9bad5aeb507f5b3c1346118011c7766c44d9ba4

Author: Paul Eggleton <paul.eggleton at linux.intel.com>
Date:   Thu May  7 14:52:23 2015 +0100

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 at linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/lib/oeqa/selftest/devtool.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/lib/oeqa/selftest/devtool.py b/meta/lib/oeqa/selftest/devtool.py
index 1a506d9..2af6114 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



More information about the Openembedded-commits mailing list