Skip to content

Commit

Permalink
Forgot to refactor the roundtrip tests
Browse files Browse the repository at this point in the history
I removed some columns to try and minimize the amount of test data I'm
requiring and forgot to update the test code.
  • Loading branch information
davisp committed Feb 25, 2013
1 parent 56dfd50 commit 86f783d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/010-short-doubles.t
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ main([]) ->

run_tests([]) ->
ok;
run_tests([{Double, _, _} | Rest]) ->
run_tests([Double | Rest]) ->
RoundTrip = jiffy:decode(jiffy:encode(Double)),
Desc = lists:flatten(io_lib:format("~e", [Double])),
etap:is(RoundTrip, Double, "Roundtrip: " ++ Desc),
Expand Down

0 comments on commit 86f783d

Please sign in to comment.