Skip to content

Commit 9c73adf

Browse files
Remove puts statements.
1 parent 6071052 commit 9c73adf

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

lib/git/lib.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -691,7 +691,6 @@ def command(cmd, opts = [], chdir = true, redirect = '', &block)
691691
if chdir && (Dir.getwd != path)
692692
Dir.chdir(path) { out = run_command(git_cmd, &block) }
693693
else
694-
puts git_cmd
695694
out = run_command(git_cmd, &block)
696695
end
697696

tests/all_tests.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
Dir.chdir(File.dirname(__FILE__)) do
2-
Dir.glob('units/test_*.rb') { |test_case| puts test_case; require test_case }
2+
Dir.glob('units/test_*.rb') { |test_case| require test_case }
33
#Dir.glob('**/test_index.rb') { |test_case| require test_case }
44
end

0 commit comments

Comments
 (0)