Skip to content

Commit d3c6bbd

Browse files
committed
Fix unicode encoding property
1 parent cc0b2cb commit d3c6bbd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/property_test.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ if Code.ensure_loaded?(ExUnitProperties) do
3737
check all string <- string(:printable) do
3838
encoded = encode(string, escape: :unicode)
3939
for << <<byte>> <- encoded >> do
40-
assert byte < 127
40+
assert byte < 128
4141
end
4242
assert decode(encoded) == string
4343
end

0 commit comments

Comments
 (0)