From 6eb2981352b1469b40de5187f7b9d712cf556579 Mon Sep 17 00:00:00 2001 From: Mario Limonciello Date: Fri, 2 Feb 2024 22:27:18 -0600 Subject: [PATCH] trivial: correct a spelling error in a comment --- tests/integration-test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration-test.py b/tests/integration-test.py index 67aa8c3..48c9907 100644 --- a/tests/integration-test.py +++ b/tests/integration-test.py @@ -1080,7 +1080,7 @@ class Tests(dbusmock.DBusTestCase): self.assertEventually(lambda: self.read_sysfs_file("sys/firmware/acpi/platform_profile") == b'low-power') self.assertEqual(self.get_dbus_property('ActiveProfile'), 'power-saver') - # And mimick a user pressing a Fn+H + # And mimic a user pressing a Fn+H with open(os.path.join(self.testbed.get_root_dir(), "sys/firmware/acpi/platform_profile"), 'w') as platform_profile: platform_profile.write('performance\n') self.assertEventually(lambda: self.get_dbus_property('ActiveProfile') == 'performance')