diff options
| author | William Boman <william@redwill.se> | 2023-04-06 20:10:30 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-06 18:10:30 +0000 |
| commit | 7c3689afd418f46ecb852a8ffff7642209ce6cf3 (patch) | |
| tree | a3ee7f927406f77e74251616db2e70b3b998d106 /tests | |
| parent | chore: autogenerate (#1184) (diff) | |
| download | mason-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.lua | 2 |
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) |
