Skip to content
Prev Previous commit
Next Next commit
Fmt
  • Loading branch information
ascjones committed Sep 29, 2022
commit d7c2497c43d53ab6ea4e382b1775101fdc213a3e
3 changes: 2 additions & 1 deletion crates/e2e/macro/src/ir.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
// limitations under the License.

use crate::{
config::E2EConfig, ir,
config::E2EConfig,
ir,
};
use proc_macro2::TokenStream as TokenStream2;

Expand Down
4 changes: 2 additions & 2 deletions crates/e2e/macro/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@

// extern crate proc_macro;

mod config;
mod codegen;
mod config;
mod ir;

use proc_macro::TokenStream;
Expand Down Expand Up @@ -163,4 +163,4 @@ fn generate_or_err(attr: TokenStream2, input: TokenStream2) -> Result<TokenStrea
let test_definition = ir::InkE2ETest::new(attr, input)?;
let codegen = codegen::InkE2ETest::from(test_definition);
Ok(codegen.generate_code())
}
}
2 changes: 1 addition & 1 deletion crates/e2e/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ use pallet_contracts_primitives::{
pub use smart_bench_macro;
use xts::ContractsApi;

pub use ink_e2e_macro::e2e_test;
pub use env_logger;
pub use ink_e2e_macro::e2e_test;
pub use sp_keyring::AccountKeyring;
pub use subxt::tx::PairSigner;
pub use tokio;
Expand Down