Browse Source

Fix support for Erlang 17.x

pull/184/head
Paul J. Davis 6 years ago
parent
commit
37b41dcdc5
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      test/jiffy_04_string_tests.erl

+ 1
- 1
test/jiffy_04_string_tests.erl View File

@ -11,7 +11,7 @@
latin1_atom_test_() ->
Key = binary_to_atom(<<228>>, latin1), %% `ä`
Expected = <<"{\"", 195, 164, "\":\"bar\"}">>,
?_assertEqual(Expected, enc(#{ Key => <<"bar">> })).
?_assertEqual(Expected, enc(maps:put(Key, <<"bar">>, #{}))).
string_success_test_() ->

Loading…
Cancel
Save