Skip to content

Commit

Permalink
Fix decode_to_list test
Browse files Browse the repository at this point in the history
  • Loading branch information
rjsamson committed Jan 15, 2014
1 parent 09d149d commit b3763b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/hex_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ defmodule HexTest do
assert Hex.decode_to_list('54686973206973206120746573742e') == 'This is a test.'
end

test "decodes to a binary from a hex list" do
assert Hex.decode_to_list('54686973206973206120746573742e') == "This is a test."
test "decodes to a list from a hex binary" do
assert Hex.decode_to_list("54686973206973206120746573742e") == 'This is a test.'
end

test "converts hex list to an integer" do
Expand Down

0 comments on commit b3763b0

Please sign in to comment.