diff options
Diffstat (limited to 'bitbake/lib/bb/tests')
-rw-r--r-- | bitbake/lib/bb/tests/fetch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/tests/fetch.py b/bitbake/lib/bb/tests/fetch.py index ccce37b323..67eda5901a 100644 --- a/bitbake/lib/bb/tests/fetch.py +++ b/bitbake/lib/bb/tests/fetch.py | |||
@@ -153,7 +153,7 @@ class FetcherTest(unittest.TestCase): | |||
153 | ud.setup_localpath(self.d) | 153 | ud.setup_localpath(self.d) |
154 | mirrors = bb.fetch2.mirror_from_string("%s %s" % (k[1], k[2])) | 154 | mirrors = bb.fetch2.mirror_from_string("%s %s" % (k[1], k[2])) |
155 | newuris, uds = bb.fetch2.build_mirroruris(ud, mirrors, self.d) | 155 | newuris, uds = bb.fetch2.build_mirroruris(ud, mirrors, self.d) |
156 | self.assertEqual(newuris, [v]) | 156 | self.assertEqual([v], newuris) |
157 | 157 | ||
158 | def test_urilist1(self): | 158 | def test_urilist1(self): |
159 | fetcher = bb.fetch.FetchData("http://downloads.yoctoproject.org/releases/bitbake/bitbake-1.0.tar.gz", self.d) | 159 | fetcher = bb.fetch.FetchData("http://downloads.yoctoproject.org/releases/bitbake/bitbake-1.0.tar.gz", self.d) |