summaryrefslogtreecommitdiff
path: root/smoketest/scripts
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2020-09-16 22:12:26 +0200
committerChristian Poessinger <christian@poessinger.com>2020-09-16 22:12:26 +0200
commit43359c2b824d53b5f82dea937f817139cbf77f8f (patch)
treeb1e9640fdb5b84498b5e60e6dcbdfb4f186931e9 /smoketest/scripts
parentde5cfd35ba14b75b58da653643472de93577b434 (diff)
downloadvyos-1x-43359c2b824d53b5f82dea937f817139cbf77f8f.tar.gz
vyos-1x-43359c2b824d53b5f82dea937f817139cbf77f8f.zip
smoketest: T2886: typo, use assertIn over asserIn
Diffstat (limited to 'smoketest/scripts')
-rwxr-xr-xsmoketest/scripts/system/test_kernel_options.py2
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()