summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Lerche <carllerche@mac.com>2010-07-09 16:24:32 -0700
committerCarl Lerche <carllerche@mac.com>2010-07-09 16:32:50 -0700
commitb078098212de02f1505b4c73de0a2e8e68ee3d65 (patch)
treeb38c83db900a540f3bb90ace0c04c153ad5a6480
parent25ab2dc405bce75fd9b1faff2b37fa79b5c2235d (diff)
downloadbundler-1.0.0.beta.3.tar.gz
Fix a bug in the specs in 1.91.0.0.beta.3
-rw-r--r--spec/support/helpers.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/support/helpers.rb b/spec/support/helpers.rb
index f743e4b134..a1c202f45e 100644
--- a/spec/support/helpers.rb
+++ b/spec/support/helpers.rb
@@ -79,7 +79,7 @@ module Spec
def sys_exec(cmd, expect_err = false)
require "open3"
- @in, @out, @err = Open3.popen3(cmd)
+ @in, @out, @err = Open3.popen3(cmd.to_s)
yield @in if block_given?