File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
stackslib/src/clarity_vm/tests Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -820,12 +820,16 @@ fn epoch205_nfts(use_mainnet: bool) {
820
820
) ;
821
821
}
822
822
823
+ // Test not valid for clarity-wasm runtime
824
+ // Contracts would error in the static analysis pass.
823
825
#[ test]
824
826
#[ cfg( not( feature = "clarity-wasm" ) ) ]
825
827
fn epoch205_nfts_mainnet ( ) {
826
828
epoch205_nfts ( true )
827
829
}
828
830
831
+ // Test not valid for clarity-wasm runtime
832
+ // Contracts would error in the static analysis pass.
829
833
#[ test]
830
834
#[ cfg( not( feature = "clarity-wasm" ) ) ]
831
835
fn epoch205_nfts_testnet ( ) {
Original file line number Diff line number Diff line change @@ -286,7 +286,6 @@ fn test_emit_nested_print_nok() {
286
286
let ( value, events) = helper_execute ( contract, "emit-event-ok" ) ;
287
287
assert_eq ! ( value, Value :: okay( Value :: UInt ( 1 ) ) . unwrap( ) ) ;
288
288
assert_eq ! ( events. len( ) , 1 ) ;
289
-
290
289
}
291
290
292
291
#[ test]
You can’t perform that action at this time.
0 commit comments