From 770655a87a3563cf3f1a443a5a5c8bc18ca0d4a3 Mon Sep 17 00:00:00 2001 From: Chris MacNaughton Date: Wed, 27 Feb 2019 14:45:19 +0100 Subject: [PATCH] fix type typo --- zaza/charm_tests/test_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zaza/charm_tests/test_utils.py b/zaza/charm_tests/test_utils.py index a28094e..1b9f65c 100644 --- a/zaza/charm_tests/test_utils.py +++ b/zaza/charm_tests/test_utils.py @@ -47,9 +47,9 @@ def audit_assertions(action, :param action: Action object from running the security-checklist action :type action: juju.action.Action :param expected_passes: List of test names that are expected to pass - :type expected_passes: List(str) + :type expected_passes: List[str] :param expected_failures: List of test names that are expected to fail - :type expexted_failures: List(str) + :type expexted_failures: List[str] """ if expected_failures is None: expected_failures = []