Skip to content

Commit

Permalink
allow specs to run on MRI 1.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rdp committed Jul 24, 2010
1 parent 3726331 commit 7131bd0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions spec/win32_screenshot_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@
include SpecHelper

before :all do
PROGRAM_FILES = "c:/program files/"
@notepad = IO.popen("notepad").pid
@iexplore = IO.popen(File.join(PROGRAM_FILES, "Internet Explorer", "iexplore about:blank")).pid
@iexplore = IO.popen("'c:/program files/Internet Explorer/iexplore' about:blank").pid
@calc = IO.popen("calc").pid
wait_for_programs_to_open
cleanup
Expand Down

1 comment on commit 7131bd0

@rdp
Copy link
Owner Author

@rdp rdp commented on 7131bd0 Aug 3, 2010

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

breaks 1.8.6 compat...

Please sign in to comment.