TEST: linting fixes

Signed-off-by: jokob-sk <jokob.sk@gmail.com>
This commit is contained in:
jokob-sk
2026-01-11 12:56:56 +11:00
parent 75ee015864
commit 3cb55eb35c
2 changed files with 8 additions and 7 deletions

View File

@@ -23,9 +23,9 @@ import test_ui_plugins # noqa: E402 [flake8 lint suppression]
def main():
"""Run all UI tests and provide summary"""
print("\n" + "="*70)
print("\n" + "=" * 70)
print("NetAlertX UI Test Suite")
print("="*70)
print("=" * 70)
test_modules = [
("Dashboard", test_ui_dashboard),
@@ -49,9 +49,9 @@ def main():
results[name] = False
# Summary
print("\n" + "="*70)
print("\n" + "=" * 70)
print("Test Summary")
print("="*70 + "\n")
print("=" * 70 + "\n")
for name, passed in results.items():
status = "" if passed else ""