summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2025-03-18 22:16:39 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-03-19 11:46:31 +0000
commitcc5e31ceab44d5d580ee6af7d232f6e89fdaf48a (patch)
tree1ec19f3fa7771de445d07beb4dea7c42f56fdf3a
parent122de6fd0f5b65689a0099bad6c0d423b8227241 (diff)
downloadpoky-cc5e31ceab44d5d580ee6af7d232f6e89fdaf48a.tar.gz
bitbake: tests/fetch: Fix typo in npm test
(Bitbake rev: 79b04f61236117d310c12c1b1378ae63afb931ff) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--bitbake/lib/bb/tests/fetch.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/tests/fetch.py b/bitbake/lib/bb/tests/fetch.py
index 441b3f8236..8fa870c8a1 100644
--- a/bitbake/lib/bb/tests/fetch.py
+++ b/bitbake/lib/bb/tests/fetch.py
@@ -2815,7 +2815,7 @@ class NPMTest(FetcherTest):
2815 @skipIfNoNetwork() 2815 @skipIfNoNetwork()
2816 def test_npm_version_latest(self): 2816 def test_npm_version_latest(self):
2817 url = ['npm://registry.npmjs.org;package=@savoirfairelinux/node-server-example;version=latest'] 2817 url = ['npm://registry.npmjs.org;package=@savoirfairelinux/node-server-example;version=latest']
2818 fetcher = bb.fetch.Fetch(urls, self.d) 2818 fetcher = bb.fetch.Fetch(url, self.d)
2819 fetcher.download() 2819 fetcher.download()
2820 fetcher.unpack(self.unpackdir) 2820 fetcher.unpack(self.unpackdir)
2821 unpackdir = os.path.join(self.unpackdir, 'npm') 2821 unpackdir = os.path.join(self.unpackdir, 'npm')