summaryrefslogtreecommitdiffstats
path: root/anta/tests/field_notices.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--anta/tests/field_notices.py14
1 files changed, 4 insertions, 10 deletions
diff --git a/anta/tests/field_notices.py b/anta/tests/field_notices.py
index 6f98a2c..41e81a8 100644
--- a/anta/tests/field_notices.py
+++ b/anta/tests/field_notices.py
@@ -34,7 +34,6 @@ class VerifyFieldNotice44Resolution(AntaTest):
```
"""
- name = "VerifyFieldNotice44Resolution"
description = "Verifies that the device is using the correct Aboot version per FN0044."
categories: ClassVar[list[str]] = ["field notices"]
commands: ClassVar[list[AntaCommand | AntaTemplate]] = [AntaCommand(command="show version detail", revision=1)]
@@ -110,15 +109,11 @@ class VerifyFieldNotice44Resolution(AntaTest):
self.result.is_success()
incorrect_aboot_version = (
- aboot_version.startswith("4.0.")
- and int(aboot_version.split(".")[2]) < 7
- or aboot_version.startswith("4.1.")
- and int(aboot_version.split(".")[2]) < 1
+ (aboot_version.startswith("4.0.") and int(aboot_version.split(".")[2]) < 7)
+ or (aboot_version.startswith("4.1.") and int(aboot_version.split(".")[2]) < 1)
or (
- aboot_version.startswith("6.0.")
- and int(aboot_version.split(".")[2]) < 9
- or aboot_version.startswith("6.1.")
- and int(aboot_version.split(".")[2]) < 7
+ (aboot_version.startswith("6.0.") and int(aboot_version.split(".")[2]) < 9)
+ or (aboot_version.startswith("6.1.") and int(aboot_version.split(".")[2]) < 7)
)
)
if incorrect_aboot_version:
@@ -143,7 +138,6 @@ class VerifyFieldNotice72Resolution(AntaTest):
```
"""
- name = "VerifyFieldNotice72Resolution"
description = "Verifies if the device is exposed to FN0072, and if the issue has been mitigated."
categories: ClassVar[list[str]] = ["field notices"]
commands: ClassVar[list[AntaCommand | AntaTemplate]] = [AntaCommand(command="show version detail", revision=1)]