From 2a532aa2a3f5de458133c341d588c02ee0b07010 Mon Sep 17 00:00:00 2001 From: David Murphy < dmurphy@saltstack.com> Date: Thu, 8 Feb 2024 15:04:55 -0700 Subject: [PATCH] Fix missing typo f-string --- tests/pytests/functional/utils/gitfs/test_gitfs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pytests/functional/utils/gitfs/test_gitfs.py b/tests/pytests/functional/utils/gitfs/test_gitfs.py index fc2cfb303b5..abe050fa811 100644 --- a/tests/pytests/functional/utils/gitfs/test_gitfs.py +++ b/tests/pytests/functional/utils/gitfs/test_gitfs.py @@ -260,7 +260,7 @@ def _test_lock(opts): assert os.path.isfile(repo._get_lock_file()) assert repo.clear_lock() == ( [ - "Removed update lock for gitfs remote 'https://github.com/saltstack/salt-test-pillar-gitfs.git' on machine_id '{mach_id}'" + f"Removed update lock for gitfs remote 'https://github.com/saltstack/salt-test-pillar-gitfs.git' on machine_id '{mach_id}'" ], [], )