Skip to content

Commit c28b3b4

Browse files
committed
fix: format code and add comments
1 parent 3f4ff5a commit c28b3b4

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

stackslib/src/clarity_vm/tests/costs.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -820,12 +820,16 @@ fn epoch205_nfts(use_mainnet: bool) {
820820
);
821821
}
822822

823+
// Test not valid for clarity-wasm runtime
824+
// Contracts would error in the static analysis pass.
823825
#[test]
824826
#[cfg(not(feature = "clarity-wasm"))]
825827
fn epoch205_nfts_mainnet() {
826828
epoch205_nfts(true)
827829
}
828830

831+
// Test not valid for clarity-wasm runtime
832+
// Contracts would error in the static analysis pass.
829833
#[test]
830834
#[cfg(not(feature = "clarity-wasm"))]
831835
fn epoch205_nfts_testnet() {

stackslib/src/clarity_vm/tests/events.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,6 @@ fn test_emit_nested_print_nok() {
286286
let (value, events) = helper_execute(contract, "emit-event-ok");
287287
assert_eq!(value, Value::okay(Value::UInt(1)).unwrap());
288288
assert_eq!(events.len(), 1);
289-
290289
}
291290

292291
#[test]

0 commit comments

Comments
 (0)