aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorWilliam Boman <william@redwill.se>2023-04-06 20:10:30 +0200
committerGitHub <noreply@github.com>2023-04-06 18:10:30 +0000
commit7c3689afd418f46ecb852a8ffff7642209ce6cf3 (patch)
treea3ee7f927406f77e74251616db2e70b3b998d106 /tests
parentchore: autogenerate (#1184) (diff)
downloadmason-7c3689afd418f46ecb852a8ffff7642209ce6cf3.tar
mason-7c3689afd418f46ecb852a8ffff7642209ce6cf3.tar.gz
mason-7c3689afd418f46ecb852a8ffff7642209ce6cf3.tar.bz2
mason-7c3689afd418f46ecb852a8ffff7642209ce6cf3.tar.lz
mason-7c3689afd418f46ecb852a8ffff7642209ce6cf3.tar.xz
mason-7c3689afd418f46ecb852a8ffff7642209ce6cf3.tar.zst
mason-7c3689afd418f46ecb852a8ffff7642209ce6cf3.zip
refactor(std): quiet git checkout (#1186)
Diffstat (limited to 'tests')
-rw-r--r--tests/mason-core/installer/managers/std_spec.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/mason-core/installer/managers/std_spec.lua b/tests/mason-core/installer/managers/std_spec.lua
index 661ce774..cf799477 100644
--- a/tests/mason-core/installer/managers/std_spec.lua
+++ b/tests/mason-core/installer/managers/std_spec.lua
@@ -145,6 +145,6 @@ describe("std clone", function()
assert
.spy(ctx.spawn.git)
.was_called_with { "fetch", "--depth", "1", "origin", "e1fd03b1856cb5ad8425f49e18353dc524b02f91" }
- assert.spy(ctx.spawn.git).was_called_with { "checkout", "FETCH_HEAD" }
+ assert.spy(ctx.spawn.git).was_called_with { "checkout", "--quiet", "FETCH_HEAD" }
end)
end)