Skip to content

Commit af72583

Browse files
committed
test(lazer/sui): fix
1 parent c0d09d8 commit af72583

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lazer/contracts/sui/tests/pyth_lazer_tests.move

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ public fun test_parse_and_verify_le_ecdsa_update() {
7070
assert!(feed_1.confidence() == option::none(), 0);
7171
assert!(feed_1.funding_rate() == option::some(option::none()), 0);
7272
assert!(feed_1.funding_timestamp() == option::some(option::none()), 0);
73+
assert!(feed_1.funding_rate_interval() == option::some(option::none()), 0);
7374

7475
let feed_2 = vector::borrow(&update.feeds(), 1);
7576
assert!(feed_2.feed_id() == 2, 0);
@@ -81,6 +82,7 @@ public fun test_parse_and_verify_le_ecdsa_update() {
8182
assert!(feed_2.confidence() == option::none(), 0);
8283
assert!(feed_2.funding_rate() == option::some(option::none()), 0);
8384
assert!(feed_2.funding_timestamp() == option::some(option::none()), 0);
85+
assert!(feed_2.funding_rate_interval() == option::some(option::none()), 0);
8486

8587
let feed_3 = vector::borrow(&update.feeds(), 2);
8688
assert!(feed_3.feed_id() == 112, 0);

0 commit comments

Comments
 (0)