diff mbox series

oeqa: devtool: Fix mbedtls branch in test_devtool_add_git_style1

Message ID 20251108-mathieu-mbedtls-branch-selftest-v1-1-1fe07a307051@bootlin.com
State New
Headers show
Series oeqa: devtool: Fix mbedtls branch in test_devtool_add_git_style1 | expand

Commit Message

Mathieu Dubois-Briand Nov. 8, 2025, 10:25 a.m. UTC
MbedTLS project renamed mbedtls-2.28 branch as archive/mbedtls-2.28:
update the name of the branch used in tests.

Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
---
 meta/lib/oeqa/selftest/cases/devtool.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


---
base-commit: b9d761c06350020e14e09c5bfa7b92eded43d889
change-id: 20251108-mathieu-mbedtls-branch-selftest-542270da67c3

Best regards,
diff mbox series

Patch

diff --git a/meta/lib/oeqa/selftest/cases/devtool.py b/meta/lib/oeqa/selftest/cases/devtool.py
index b92f017b8111..dde6cae2d56e 100644
--- a/meta/lib/oeqa/selftest/cases/devtool.py
+++ b/meta/lib/oeqa/selftest/cases/devtool.py
@@ -469,8 +469,8 @@  class DevtoolAddTests(DevtoolBase):
         version = 'v3.1.0'
         pn = 'mbedtls'
         # this will trigger reformat_git_uri with branch parameter in url
-        git_url = "'git://git@github.com/ARMmbed/mbedtls.git;branch=mbedtls-2.28;protocol=https'"
-        resulting_src_uri = "git://git@github.com/ARMmbed/mbedtls.git;branch=mbedtls-2.28;protocol=https"
+        git_url = "'git://git@github.com/ARMmbed/mbedtls.git;branch=archive/mbedtls-2.28;protocol=https'"
+        resulting_src_uri = "git://git@github.com/ARMmbed/mbedtls.git;branch=archive/mbedtls-2.28;protocol=https"
         self._test_devtool_add_git_url(git_url, version, pn, resulting_src_uri)
 
     def test_devtool_add_git_style2(self):