From 88569525f99a9e31e8619e8141f834c9ab742c1d Mon Sep 17 00:00:00 2001 From: Jac Fitzgerald Date: Mon, 22 Jul 2024 13:31:14 -0700 Subject: [PATCH] tyPo --- tests/parsers/test_parser_create_site_users.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/parsers/test_parser_create_site_users.py b/tests/parsers/test_parser_create_site_users.py index 8fe074df..3fa4dc04 100644 --- a/tests/parsers/test_parser_create_site_users.py +++ b/tests/parsers/test_parser_create_site_users.py @@ -43,7 +43,7 @@ def test_create_site_user_parser_auth_MFA(self): assert args.site_name == "site-name", args assert args.auth_type == "TableauIDWithMFA", args - def test_create_site_user_parser_auth_TAbId_NotAvailable(self): + def test_create_site_user_parser_auth_TabId_NotAvailable(self): with mock.patch("builtins.open", mock.mock_open(read_data="test")): mock_args = [commandname, "users.csv", "--site", "site-name", "--auth-type", "TableauId"] with self.assertRaises(SystemExit):