Fix failure message to display command arguments

This commit is contained in:
Dan Kubb 2015-07-23 14:36:46 -07:00
parent 63c586f6bb
commit d7769922c3

View file

@ -210,7 +210,7 @@ module MutantSpec
if block_given?
yield
else
fail 'System command failed!'
fail "System command failed!: #{arguments.join(' ')}"
end
end