Commit 0983438037a13606ff6cbd281a7892295bfd7dd2

Authored by Robert Speicher
1 parent 50670948

TestEnv.reset_satellite_dir should run 'git clean' quietly

Removes the "Removing gitlabhq" messages cluttering spec output
Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
spec/support/test_env.rb
@@ -106,7 +106,7 @@ module TestEnv @@ -106,7 +106,7 @@ module TestEnv
106 setup_stubs 106 setup_stubs
107 [ 107 [
108 %W(git reset --hard --quiet), 108 %W(git reset --hard --quiet),
109 - %W(git clean -fx), 109 + %W(git clean -fx --quiet),
110 %W(git checkout --quiet origin/master) 110 %W(git checkout --quiet origin/master)
111 ].each do |git_cmd| 111 ].each do |git_cmd|
112 system(*git_cmd, chdir: seed_satellite_path) 112 system(*git_cmd, chdir: seed_satellite_path)