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] cb791850ad

Signed-off-by: Dowan Gullient <dowan.gullient@smile.fr>
[Fiona: fix commit message formatting]
Signed-off-by: Fiona Klute <fiona.klute@gmx.de>
This commit is contained in:
Dowan Gullient via buildroot
2026-07-01 14:57:41 +02:00
committed by Fiona Klute
parent 9030c9a81d
commit cfd7483a26

View File

@@ -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)