Skip to content

Commit 307a36d

Browse files
committed
chore: format in tests
1 parent d47a1e2 commit 307a36d

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

crates/revive/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ std = [
3333
"scale-info/std",
3434
"frame-support/std",
3535
"ink_primitives/std",
36-
# "sp-weights/std",
3736
"sp-core/std",
3837
"sp-runtime/std",
3938
"serde/std",

integration-tests/solidity-abi/sol-cross-contract/e2e_tests.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ use ink::{
1212
SolEncode,
1313
primitives::DepositLimit,
1414
};
15-
use ink_sandbox::frame_system::pallet_prelude::OriginFor;
1615
use ink_revive::ExecReturnValue;
16+
use ink_sandbox::frame_system::pallet_prelude::OriginFor;
1717

1818
const STORAGE_DEPOSIT_LIMIT: DepositLimit<u128> = DepositLimit::UnsafeOnlyForDryRun;
1919

@@ -175,7 +175,7 @@ impl ContractSandbox {
175175
let call_raw = result.result.expect("sandbox call contract failed");
176176
ExecReturnValue {
177177
flags: call_raw.flags,
178-
data: call_raw.data
178+
data: call_raw.data,
179179
}
180180
}
181181
}

integration-tests/solidity-abi/sol-encoding/e2e_tests.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ use ink::{
66
primitives::DepositLimit,
77
};
88
use ink_e2e::ContractsRegistry;
9+
use ink_revive::ExecReturnValue;
910
use ink_sandbox::{
1011
DefaultSandbox,
1112
Sandbox,
1213
api::prelude::*,
1314
frame_system::pallet_prelude::OriginFor,
1415
};
15-
use ink_revive::ExecReturnValue;
1616

1717
const STORAGE_DEPOSIT_LIMIT: DepositLimit<u128> = DepositLimit::UnsafeOnlyForDryRun;
1818

@@ -127,7 +127,7 @@ impl ContractSandbox {
127127
.expect("sandbox call contract failed");
128128
ExecReturnValue {
129129
flags: call_raw.flags,
130-
data: call_raw.data
130+
data: call_raw.data,
131131
}
132132
}
133133
}

0 commit comments

Comments
 (0)