From 4348affa3ead772a4bde4bc1dd07a883c08ea679 Mon Sep 17 00:00:00 2001 From: Gaith Hallak Date: Wed, 29 Dec 2021 14:58:08 +0200 Subject: [PATCH] Fix broken abi tests --- test/aeso_abi_tests.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/aeso_abi_tests.erl b/test/aeso_abi_tests.erl index 2a8faba..98a45d4 100644 --- a/test/aeso_abi_tests.erl +++ b/test/aeso_abi_tests.erl @@ -92,7 +92,7 @@ encode_calldata_neg_test() -> Code = [ "contract Foo =\n" " entrypoint f(x : int) : string = \"hello\"\n" ], - ExpErr1 = "Type error at line 5, col 34:\nCannot unify `int` and `bool`\n" + ExpErr1 = "Type error at line 5, col 34:\nCannot unify `bool` and `int`\n" "when checking the application of\n" " `f : (int) => string`\n" "to arguments\n"