From 055e954cd44233c5249c4b35a1e80cf78f2fbfdb Mon Sep 17 00:00:00 2001 From: Dowan Gullient via buildroot Date: Wed, 1 Jul 2026 14:57:41 +0200 Subject: [PATCH] support/testing: test_gnupg2: fix runtime failure In the precedent patch "support/testing: test_gnupg2.py: use assertRunNotOk()" [1] a small typo (OK instead of Ok) was introduced in the test_gnupg2.py file, which caused a runtime failure. This patch simply replace "self.assertRunNotOK(cmd)" with "self.assertRunNotOk(cmd)" to correct this typo. [1] cb791850ada782beca4b03e26356fd8506912d52 Signed-off-by: Dowan Gullient [Fiona: fix commit message formatting] Signed-off-by: Fiona Klute (cherry picked from commit cfd7483a26e17ca4ea95793ea7a618c6cc1b1b78) Signed-off-by: Thomas Perale --- support/testing/tests/package/test_gnupg2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/testing/tests/package/test_gnupg2.py b/support/testing/tests/package/test_gnupg2.py index 6f862c31ce..c8fb029c95 100644 --- a/support/testing/tests/package/test_gnupg2.py +++ b/support/testing/tests/package/test_gnupg2.py @@ -108,4 +108,4 @@ class TestGnupg2(infra.basetest.BRTest): self.assertRunNotOk(cmd) cmd = "gpg --armor --verify {}".format(asc_file) - self.assertRunNotOK(cmd) + self.assertRunNotOk(cmd)