We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 677ad61 commit a99a9cfCopy full SHA for a99a9cf
lib/elixir/test/elixir/code_normalizer/quoted_ast_test.exs
@@ -708,10 +708,10 @@ defmodule Code.Normalizer.QuotedASTTest do
708
~S[~c"one\n'#{2}'\nthree"]
709
710
assert Code.string_to_quoted!(~S/'one\n"#{2}"\nthree'/) |> quoted_to_string(escape: false) ==
711
- ~s[~c"one\n\\"\#{2}\\"\nthree"]
+ ~s[~c'one\n"\#{2}"\nthree']
712
713
assert Code.string_to_quoted!(~S/'one\n"#{2}"\nthree'/) |> quoted_to_string() ==
714
- ~S[~c"one\n\"#{2}\"\nthree"]
+ ~S[~c'one\n"#{2}"\nthree']
715
end
716
717
test "atoms" do
0 commit comments