summaryrefslogtreecommitdiffstats
path: root/bitbake/lib
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib')
-rw-r--r--bitbake/lib/bb/tests/fetch.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/tests/fetch.py b/bitbake/lib/bb/tests/fetch.py
index f9225b2a30..8b92e4d7c1 100644
--- a/bitbake/lib/bb/tests/fetch.py
+++ b/bitbake/lib/bb/tests/fetch.py
@@ -939,7 +939,7 @@ class FetcherNetworkTest(FetcherTest):
939 939
940 @skipIfNoNetwork() 940 @skipIfNoNetwork()
941 def test_git_submodule_CLI11(self): 941 def test_git_submodule_CLI11(self):
942 url = "gitsm://github.com/CLIUtils/CLI11;protocol=git;rev=bd4dc911847d0cde7a6b41dfa626a85aab213baf" 942 url = "gitsm://github.com/CLIUtils/CLI11;protocol=git;rev=bd4dc911847d0cde7a6b41dfa626a85aab213baf;branch=main"
943 fetcher = bb.fetch.Fetch([url], self.d) 943 fetcher = bb.fetch.Fetch([url], self.d)
944 fetcher.download() 944 fetcher.download()
945 # Previous cwd has been deleted 945 # Previous cwd has been deleted
@@ -954,12 +954,12 @@ class FetcherNetworkTest(FetcherTest):
954 @skipIfNoNetwork() 954 @skipIfNoNetwork()
955 def test_git_submodule_update_CLI11(self): 955 def test_git_submodule_update_CLI11(self):
956 """ Prevent regression on update detection not finding missing submodule, or modules without needed commits """ 956 """ Prevent regression on update detection not finding missing submodule, or modules without needed commits """
957 url = "gitsm://github.com/CLIUtils/CLI11;protocol=git;rev=cf6a99fa69aaefe477cc52e3ef4a7d2d7fa40714" 957 url = "gitsm://github.com/CLIUtils/CLI11;protocol=git;rev=cf6a99fa69aaefe477cc52e3ef4a7d2d7fa40714;branch=main"
958 fetcher = bb.fetch.Fetch([url], self.d) 958 fetcher = bb.fetch.Fetch([url], self.d)
959 fetcher.download() 959 fetcher.download()
960 960
961 # CLI11 that pulls in a newer nlohmann-json 961 # CLI11 that pulls in a newer nlohmann-json
962 url = "gitsm://github.com/CLIUtils/CLI11;protocol=git;rev=49ac989a9527ee9bb496de9ded7b4872c2e0e5ca" 962 url = "gitsm://github.com/CLIUtils/CLI11;protocol=git;rev=49ac989a9527ee9bb496de9ded7b4872c2e0e5ca;branch=main"
963 fetcher = bb.fetch.Fetch([url], self.d) 963 fetcher = bb.fetch.Fetch([url], self.d)
964 fetcher.download() 964 fetcher.download()
965 # Previous cwd has been deleted 965 # Previous cwd has been deleted