update tests
This commit is contained in:
parent
b3d0c3ec04
commit
b669db8516
|
@ -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()
|
||||||
}
|
}
|
||||||
|
|
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
|
@ -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": []
|
||||||
}
|
}
|
Loading…
Reference in New Issue