diff options
-rwxr-xr-x | smoketest/scripts/system/test_kernel_options.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/smoketest/scripts/system/test_kernel_options.py b/smoketest/scripts/system/test_kernel_options.py index 861132127..8c96d96fb 100755 --- a/smoketest/scripts/system/test_kernel_options.py +++ b/smoketest/scripts/system/test_kernel_options.py @@ -30,7 +30,7 @@ class TestKernelModules(unittest.TestCase): for option in ['CONFIG_AUDIT', 'CONFIG_HAVE_ARCH_AUDITSYSCALL', 'CONFIG_AUDITSYSCALL', 'CONFIG_AUDIT_WATCH', 'CONFIG_AUDIT_TREE', 'CONFIG_AUDIT_ARCH']: - self.asserIn(f'{option}=y', config) + self.assertIn(f'{option}=y', config) if __name__ == '__main__': unittest.main() |