From 374a294f3fd9ac66ed73d48f0a0bf8dceef20913 Mon Sep 17 00:00:00 2001 From: Kyle Finley Date: Mon, 22 Jul 2024 16:07:41 -0400 Subject: [PATCH] fix spelling --- .vscode/cspell.json | 8 +++++++- tests/integration/cli/commands/kbenv/test_run.py | 4 ++-- tests/unit/cfngin/hooks/test_acm.py | 4 ++-- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/.vscode/cspell.json b/.vscode/cspell.json index fa7a556cf..6a7acece2 100644 --- a/.vscode/cspell.json +++ b/.vscode/cspell.json @@ -217,6 +217,12 @@ "usefixtures", "viewcode", "writeacl", - "xmlsec" + "xmlsec", + "troyready", + "tomlsort", + "pyupgrade", + "tryceratops", + "errmsg", + "datetimez" ] } diff --git a/tests/integration/cli/commands/kbenv/test_run.py b/tests/integration/cli/commands/kbenv/test_run.py index 4327dfddd..d5624375a 100644 --- a/tests/integration/cli/commands/kbenv/test_run.py +++ b/tests/integration/cli/commands/kbenv/test_run.py @@ -35,8 +35,8 @@ def test_kbenv_run_separator( ) -> None: """Test ``runway kbenv run -- --help``. - Parsing of command using ``--`` as a seperator between options and args. - Everything that comes after the seperator should be forwarded on as an arg + Parsing of command using ``--`` as a separator between options and args. + Everything that comes after the separator should be forwarded on as an arg and not parsed as an option by click. This is only required when trying to pass options shared with Runway such as ``--help``. diff --git a/tests/unit/cfngin/hooks/test_acm.py b/tests/unit/cfngin/hooks/test_acm.py index 2f4563bd3..9f2d095d5 100644 --- a/tests/unit/cfngin/hooks/test_acm.py +++ b/tests/unit/cfngin/hooks/test_acm.py @@ -351,10 +351,10 @@ def test_get_validation_record( ("FAILED", "SUCCESS"), ], ) - def test_get_validation_record_status_missmatch( + def test_get_validation_record_status_mismatch( self, cfngin_context: MockCfnginContext, check: str, found: str ) -> None: - """Test get get_validation_record with a missmatched record status.""" + """Test get get_validation_record with a mismatched record status.""" # setup context acm_stubber = cfngin_context.add_stubber("acm", region="us-east-1") cfngin_context.add_stubber("route53", region="us-east-1")