1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00

Remove redundant call to Shellwords.escape

The "edit" command already intelligently escapes arguments, if need.
This commit also fixes four failing tests on Windows.
This commit is contained in:
Kyrylo Silin 2013-01-14 07:17:47 +02:00 committed by John Mair
parent ae3f534b35
commit 24ac5b04f4

View file

@ -387,7 +387,7 @@ describe "edit" do
@tempfile.flush
load @tempfile.path
@tempfile_path = Shellwords.escape(@tempfile.path)
@tempfile_path = @tempfile.path
end
after do