diff mbox series

[09/17] support/testing/tests/package/test_acpica.py: fix typos in comments

Message ID 20240920210836.4093091-9-peter@korsgaard.com
State New
Headers show
Series [01/17] support/dependencies/dependencies.sh: fix 'mimic' typo | expand

Commit Message

Peter Korsgaard Sept. 20, 2024, 9:08 p.m. UTC
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 support/testing/tests/package/test_acpica.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/support/testing/tests/package/test_acpica.py b/support/testing/tests/package/test_acpica.py
index f7dd64d7f0..adfb93d504 100644
--- a/support/testing/tests/package/test_acpica.py
+++ b/support/testing/tests/package/test_acpica.py
@@ -43,12 +43,12 @@  class TestAcpica(infra.basetest.BRTest):
         cmd += " | grep -F '\"Hello Buildroot!\"'"
         self.assertRunOk(cmd)
 
-        # INT1 is exepcted to be 12345678
+        # INT1 is expected to be 12345678
         cmd = "acpiexec -b 'evaluate INT1' dsdt.aml"
         cmd += " | grep -F 12345678"
         self.assertRunOk(cmd)
 
-        # Evalute the TEST method which prints its argument
+        # Evaluate the TEST method which prints its argument
         cmd = "acpiexec -b 'evaluate TST2 \"Hello World\"' dsdt.aml"
         cmd += " | grep -F 'Arg0=Hello World'"
         self.assertRunOk(cmd)