Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/test_utils/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ mod platform;
mod step;
mod transactions;

pub(crate) use step::fake_step;
pub use {
crate::fake_step,
accounts::{FundedAccounts, WithFundedAccounts},
ethereum::EthConsensusDriver,
exts::*,
Expand Down
3 changes: 1 addition & 2 deletions src/test_utils/step.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ use {
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct StringEvent(pub String);

#[macro_export]
macro_rules! fake_step {
($name:ident) => {
#[allow(unreachable_pub)]
Expand Down Expand Up @@ -148,8 +149,6 @@ macro_rules! fake_step {
};
}

pub(crate) use fake_step;

fake_step!(AlwaysOkStep, noop_ok);
fake_step!(AlwaysBreakStep, noop_break);
fake_step!(AlwaysFailStep, noop_fail);
Expand Down
Loading