Skip to content

Commit

Permalink
Fix new JS test case
Browse files Browse the repository at this point in the history
  • Loading branch information
wohali committed Apr 27, 2020
1 parent bb43a69 commit e6e6e6b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/couch/src/couch_query_servers.erl
Original file line number Diff line number Diff line change
Expand Up @@ -777,8 +777,9 @@ force_utf8_test() ->
?assertNotEqual(Case, force_utf8(Case)),
?assertThrow(_, ?JSON_DECODE(ToJSON(Case))),
?assertMatch(<<_/binary>>, ?JSON_DECODE(ToJSON(force_utf8(Case))))
catch T:R:S ->
io:format(standard_error, "~p~n~p~n~p~n", [T, R, S])
catch
T:R ->
io:format(standard_error, "~p~n~p~n", [T, R])
end
end, NotOk).

Expand Down

0 comments on commit e6e6e6b

Please sign in to comment.