Skip to content

Commit f8466f5

Browse files
committed
chore: fmt
1 parent 6a38061 commit f8466f5

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

clarity/src/vm/tests/traits.rs

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -868,8 +868,9 @@ fn test_bad_call_with_trait(
868868
epoch: StacksEpochId,
869869
mut env_factory: MemoryEnvironmentGenerator,
870870
) {
871-
872-
if cfg!(feature = "clarity-wasm") && version == ClarityVersion::Clarity1 { return; }
871+
if cfg!(feature = "clarity-wasm") && version == ClarityVersion::Clarity1 {
872+
return;
873+
}
873874

874875
let mut owned_env = env_factory.get_env(epoch);
875876
// This set of contracts should be working in this context,
@@ -899,28 +900,28 @@ fn test_bad_call_with_trait(
899900
QualifiedContractIdentifier::local("defun").unwrap(),
900901
contract_defining_trait,
901902
ASTRules::PrecheckSize,
902-
&mut analysis_db
903+
&mut analysis_db,
903904
)
904905
.unwrap();
905906
env.initialize_contract_with_db(
906907
QualifiedContractIdentifier::local("dispatch").unwrap(),
907908
dispatching_contract,
908909
ASTRules::PrecheckSize,
909-
&mut analysis_db
910+
&mut analysis_db,
910911
)
911912
.unwrap();
912913
env.initialize_contract_with_db(
913914
QualifiedContractIdentifier::local("implem").unwrap(),
914915
impl_contract,
915916
ASTRules::PrecheckSize,
916-
&mut analysis_db
917+
&mut analysis_db,
917918
)
918919
.unwrap();
919920
env.initialize_contract_with_db(
920921
QualifiedContractIdentifier::local("call").unwrap(),
921922
caller_contract,
922923
ASTRules::PrecheckSize,
923-
&mut analysis_db
924+
&mut analysis_db,
924925
)
925926
.unwrap();
926927
}

0 commit comments

Comments
 (0)