Skip to content

Commit a99a9cf

Browse files
committed
Fix test due to backport
1 parent 677ad61 commit a99a9cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: lib/elixir/test/elixir/code_normalizer/quoted_ast_test.exs

+2-2
Original file line numberDiff line numberDiff line change
@@ -708,10 +708,10 @@ defmodule Code.Normalizer.QuotedASTTest do
708708
~S[~c"one\n'#{2}'\nthree"]
709709

710710
assert Code.string_to_quoted!(~S/'one\n"#{2}"\nthree'/) |> quoted_to_string(escape: false) ==
711-
~s[~c"one\n\\"\#{2}\\"\nthree"]
711+
~s[~c'one\n"\#{2}"\nthree']
712712

713713
assert Code.string_to_quoted!(~S/'one\n"#{2}"\nthree'/) |> quoted_to_string() ==
714-
~S[~c"one\n\"#{2}\"\nthree"]
714+
~S[~c'one\n"#{2}"\nthree']
715715
end
716716

717717
test "atoms" do

0 commit comments

Comments
 (0)