Skip to content
This repository has been archived by the owner on Apr 14, 2021. It is now read-only.

Commit

Permalink
Fix a bug in the specs in 1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Carl Lerche committed Jul 9, 2010
1 parent 25ab2dc commit b078098
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/support/helpers.rb
Expand Up @@ -79,7 +79,7 @@ def gembin(cmd)

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?

Expand Down

0 comments on commit b078098

Please sign in to comment.