Skip to content

Commit 77bb56b

Browse files
authored
Revert "refactor(e2e): move e2e criterion GlobalFeatureCheck to checks/migrator"
1 parent d9189f0 commit 77bb56b

File tree

20 files changed

+30
-590
lines changed

20 files changed

+30
-590
lines changed

Cargo.lock

Lines changed: 1 addition & 39 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -191,9 +191,6 @@ mtma-node-test-global-storage-not-empty-criterion = { path = "checks/node/citeri
191191

192192
### migrator
193193
mtma-migrator-test-types = { path = "checks/migrator/util/types" }
194-
mtma-migrator-test-empty-criterion = { path = "checks/migrator/citeria/empty" }
195-
mtma-migrator-test-matching-feature-flags-criterion = { path = "checks/migrator/citeria/matching-feature-flags" }
196-
mtma-migrator-test-transacting-criterion = { path = "checks/migrator/citeria/transacting" }
197194
mtma-migrator-test-accounts-equal-criterion = { path = "checks/migrator/citeria/accounts-equal" }
198195
mtma-migrator-test-balances-equal-criterion = { path = "checks/migrator/citeria/balances-equal" }
199196

checks/migrator/checks/sketchpad/Cargo.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ mtma-types = { workspace = true }
1313
mtma-migrator-types = { workspace = true }
1414
mtma-migrator-test-types = { workspace = true }
1515
anyhow = { workspace = true }
16-
mtma-migrator-test-matching-feature-flags-criterion = { workspace = true }
17-
mtma-migrator-test-transacting-criterion = { workspace = true }
18-
mtma-migrator-test-empty-criterion = { workspace = true }
1916
mtma-node-replay-core = { workspace = true }
2017
mtma-node-test-global-storage-injective-criterion = { workspace = true }
2118
mtma-node-test-global-storage-includes-criterion = { workspace = true }
@@ -28,7 +25,6 @@ chrono = { workspace = true }
2825
rand = { workspace = true }
2926
kestrel = { workspace = true }
3027
mtma-node-test-types = { workspace = true }
31-
aptos-sdk = { workspace = true }
3228

3329
[dev-dependencies]
3430
tracing-test = { workspace = true }
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
pub mod matching_feature_flags;
2-
pub mod transacting;
31
pub mod accounts_equal;

checks/migrator/checks/sketchpad/src/matching_feature_flags.rs

Lines changed: 0 additions & 50 deletions
This file was deleted.

checks/migrator/checks/sketchpad/src/transacting.rs

Lines changed: 0 additions & 46 deletions
This file was deleted.

checks/migrator/citeria/empty/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ publish = { workspace = true }
99
rust-version = { workspace = true }
1010

1111
[dependencies]
12-
mtma-migrator-test-types = { workspace = true }
12+
mtma-node-test-types = { workspace = true }
13+
1314

1415
[lints]
1516
workspace = true

checks/migrator/citeria/empty/src/lib.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
use mtma_migrator_test_types::criterion::{
2-
Criterion, CriterionError, Criterionish, MovementAptosMigrator, MovementMigrator,
1+
use mtma_node_test_types::criterion::{
2+
Criterion, CriterionError, Criterionish, MovementAptosNode, MovementNode,
33
};
44

55
pub struct Empty;
@@ -15,10 +15,10 @@ impl Empty {
1515
}
1616

1717
impl Criterionish for Empty {
18-
async fn satisfies(
18+
fn satisfies(
1919
&self,
20-
_movement_migrator: &MovementMigrator,
21-
_movement_aptos_migrator: &MovementAptosMigrator,
20+
_movement_executor: &MovementNode,
21+
_movement_aptos_executor: &MovementAptosNode,
2222
) -> Result<(), CriterionError> {
2323
Ok(())
2424
}

checks/migrator/citeria/matching-feature-flags/Cargo.toml

Lines changed: 0 additions & 19 deletions
This file was deleted.

checks/migrator/citeria/matching-feature-flags/README.md

Lines changed: 0 additions & 2 deletions
This file was deleted.

0 commit comments

Comments
 (0)