From 0f926d3c3145410cc20641172b029dd1d8dd0852 Mon Sep 17 00:00:00 2001 From: KtorZ Date: Thu, 7 Mar 2024 01:28:51 +0100 Subject: [PATCH] Fix code-gen tests due to associativity change. --- crates/aiken-project/src/tests/gen_uplc.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/aiken-project/src/tests/gen_uplc.rs b/crates/aiken-project/src/tests/gen_uplc.rs index c4178842..aa87468a 100644 --- a/crates/aiken-project/src/tests/gen_uplc.rs +++ b/crates/aiken-project/src/tests/gen_uplc.rs @@ -4379,7 +4379,7 @@ fn expect_head3_no_tail() { test hi() { let a = [1, 2, 3] expect [h, i, j] = a - h == h && i == i && j == j + (h == h && i == i) && j == j } "#; @@ -4451,7 +4451,7 @@ fn expect_head3_cast_data_no_tail() { test hi() { let a: Data = [1, 2, 3] expect [h, i, j]: List = a - h == h && i ==i && j == j + (h == h && i ==i) && j == j } "#;