Skip to content

Commit f2719b6

Browse files
author
José Valim
committed
Properly trim all quotes on Windows
1 parent bf3ef04 commit f2719b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/iex/test/iex/helpers_test.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ defmodule IEx.HelpersTest do
221221

222222
defp maybe_trim_quotes(string) do
223223
case :os.type do
224-
{:win32, _} -> String.trim(string, "\"")
224+
{:win32, _} -> String.replace(string, "\"", "")
225225
_ -> string
226226
end
227227
end

0 commit comments

Comments
 (0)