Skip to content

Commit

Permalink
update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
MicroProofs committed May 4, 2024
1 parent b3d0c3e commit b669db8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
6 changes: 3 additions & 3 deletions examples/acceptance_tests/055/lib/tests.ak
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ const bar = #"626172"

fn fixture_1() {
dict.new()
|> dict.insert(fooz, 42, bytearray.compare)
|> dict.insert(bar, 14, bytearray.compare)
|> dict.insert(fooz, 42)
|> dict.insert(bar, 14)
}

test union_1() {
dict.union(fixture_1(), dict.new(), bytearray.compare) == fixture_1()
dict.union(fixture_1(), dict.new()) == fixture_1()
}
6 changes: 2 additions & 4 deletions examples/acceptance_tests/068/lib/tests.ak
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ pub fn from_asset(
) -> Value {
let asset =
dict.new()
|> dict.insert(asset_name, quantity, bytearray.compare)
|> dict.insert(asset_name, quantity)
dict.new()
|> dict.insert(policy_id, asset, bytearray.compare)
|> dict.insert(policy_id, asset)
|> Value
}

Expand All @@ -47,7 +47,6 @@ pub fn add(left v0: Value, right v1: Value) -> Value {
Some(q)
}
},
bytearray.compare,
)

if dict.is_empty(result) {
Expand All @@ -56,7 +55,6 @@ pub fn add(left v0: Value, right v1: Value) -> Value {
Some(result)
}
},
bytearray.compare,
)
|> Value
}
Expand Down
6 changes: 5 additions & 1 deletion examples/acceptance_tests/068/plutus.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
"preamble": {
"title": "aiken-lang/acceptance_test_068",
"version": "0.0.0",
"plutusVersion": "v2"
"plutusVersion": "v2",
"compiler": {
"name": "Aiken",
"version": "v1.0.26-alpha+a44ed4c"
}
},
"validators": []
}

0 comments on commit b669db8

Please sign in to comment.