From e94dcf6d18f6be43f588d632b0c1271b861873fa Mon Sep 17 00:00:00 2001 From: Kian Meng Ang Date: Mon, 13 Sep 2021 18:22:12 +0800 Subject: [PATCH] Fix typo (#140) --- test/property_test.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/property_test.exs b/test/property_test.exs index 0ba6a80..76c6cc3 100644 --- a/test/property_test.exs +++ b/test/property_test.exs @@ -3,7 +3,7 @@ if Code.ensure_loaded?(ExUnitProperties) do use ExUnit.Case, async: true use ExUnitProperties - property "string rountrip" do + property "string roundtrip" do check all string <- string(:printable) do assert decode(encode(string)) == string end