From 599af55085789d764d8614ae0e8f0a5d76874f51 Mon Sep 17 00:00:00 2001 From: Curtis Vogt Date: Tue, 23 Jul 2024 09:54:11 -0500 Subject: [PATCH] Formatting Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- test/targets.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/targets.jl b/test/targets.jl index 2ff0fa4..708fa38 100644 --- a/test/targets.jl +++ b/test/targets.jl @@ -107,19 +107,19 @@ end patch = @patch f(::Int) = "patched" apply(patch) do # Call patched function - @test_logs min_level=Debug (:debug, r"Patch called") begin + @test_logs min_level = Debug (:debug, r"Patch called") begin @test (@mock f(1)) == "patched" end # Call original function - @test_logs min_level=Debug (:debug, r"No patch handles provided arguments") begin + @test_logs min_level = Debug (:debug, r"No patch handles provided arguments") begin @test (@mock f(1.0)) == "original" end end # Call unpatched function apply([]) do - @test_logs min_level=Debug (:debug, r"No patch defined for target function") begin + @test_logs min_level = Debug (:debug, r"No patch defined for target function") begin @test (@mock f(1)) == "original" end end