From 16bb06a9b94533b08d231d16ac80c656ee84f40f Mon Sep 17 00:00:00 2001 From: Cory Francis Myers Date: Tue, 30 May 2023 11:25:21 -0700 Subject: [PATCH] fix(test_empty_crontabs): s/parameterize/parametrize/ --- molecule/testinfra/app/test_appenv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/molecule/testinfra/app/test_appenv.py b/molecule/testinfra/app/test_appenv.py index 3cbba45514..df33ba3d4e 100644 --- a/molecule/testinfra/app/test_appenv.py +++ b/molecule/testinfra/app/test_appenv.py @@ -105,7 +105,7 @@ def test_ensure_logo(host): assert f.group == "root" -@pytest.mark.parameterize("user", ("root", "www-data")) +@pytest.mark.parametrize("user", ("root", "www-data")) def test_empty_crontabs(host, user): """Ensure root + www-data crontabs are empty""" with host.sudo():