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:
parent
ae3f534b35
commit
24ac5b04f4
1 changed files with 1 additions and 1 deletions
|
@ -387,7 +387,7 @@ describe "edit" do
|
||||||
@tempfile.flush
|
@tempfile.flush
|
||||||
load @tempfile.path
|
load @tempfile.path
|
||||||
|
|
||||||
@tempfile_path = Shellwords.escape(@tempfile.path)
|
@tempfile_path = @tempfile.path
|
||||||
end
|
end
|
||||||
|
|
||||||
after do
|
after do
|
||||||
|
|
Loading…
Reference in a new issue