update tests

This commit is contained in:
microproofs 2024-05-04 15:58:14 -04:00
parent b3d0c3ec04
commit b669db8516
3 changed files with 10 additions and 8 deletions

View File

@ -85,10 +85,10 @@ const bar = #"626172"
fn fixture_1() { fn fixture_1() {
dict.new() dict.new()
|> dict.insert(fooz, 42, bytearray.compare) |> dict.insert(fooz, 42)
|> dict.insert(bar, 14, bytearray.compare) |> dict.insert(bar, 14)
} }
test union_1() { test union_1() {
dict.union(fixture_1(), dict.new(), bytearray.compare) == fixture_1() dict.union(fixture_1(), dict.new()) == fixture_1()
} }

View File

@ -24,9 +24,9 @@ pub fn from_asset(
) -> Value { ) -> Value {
let asset = let asset =
dict.new() dict.new()
|> dict.insert(asset_name, quantity, bytearray.compare) |> dict.insert(asset_name, quantity)
dict.new() dict.new()
|> dict.insert(policy_id, asset, bytearray.compare) |> dict.insert(policy_id, asset)
|> Value |> Value
} }
@ -47,7 +47,6 @@ pub fn add(left v0: Value, right v1: Value) -> Value {
Some(q) Some(q)
} }
}, },
bytearray.compare,
) )
if dict.is_empty(result) { if dict.is_empty(result) {
@ -56,7 +55,6 @@ pub fn add(left v0: Value, right v1: Value) -> Value {
Some(result) Some(result)
} }
}, },
bytearray.compare,
) )
|> Value |> Value
} }

View File

@ -2,7 +2,11 @@
"preamble": { "preamble": {
"title": "aiken-lang/acceptance_test_068", "title": "aiken-lang/acceptance_test_068",
"version": "0.0.0", "version": "0.0.0",
"plutusVersion": "v2" "plutusVersion": "v2",
"compiler": {
"name": "Aiken",
"version": "v1.0.26-alpha+a44ed4c"
}
}, },
"validators": [] "validators": []
} }