Skip to content

Commit

Permalink
🐛 Added DummyExtern on instantiate tester
Browse files Browse the repository at this point in the history
  • Loading branch information
tchataigner committed Jul 22, 2022
1 parent 6287e49 commit 402af40
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion testing/integration/tests/fil_sdk_macro.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
use std::env;

use fvm::executor::{ApplyFailure, ApplyKind, Executor};
use fvm_integration_tests::dummy::DummyExterns;
use fvm_integration_tests::tester::{Account, Tester};
use fvm_ipld_blockstore::MemoryBlockstore;
use fvm_ipld_encoding::tuple::*;
Expand Down Expand Up @@ -52,7 +53,7 @@ fn sdk_macro() {
.unwrap();

// Instantiate machine
tester.instantiate_machine().unwrap();
tester.instantiate_machine(DummyExterns).unwrap();

// Send message
let message = Message {
Expand Down

0 comments on commit 402af40

Please sign in to comment.