Skip to content

Commit

Permalink
chore: move sui-transactional-test-runner into crates directory
Browse files Browse the repository at this point in the history
  • Loading branch information
bmwill committed May 16, 2022
1 parent 4b2173d commit bd335da
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
members = [
"crates/sui-config",
"crates/sui-network",
"crates/sui-transactional-test-runner",
"crates/sui-types",
"crates/sui-verifier",
"crates/x",
Expand All @@ -13,7 +14,6 @@ members = [
"sui_programmability/adapter",
"sui_programmability/adapter/transactional-tests",
"sui_programmability/framework",
"sui_programmability/transactional-test-runner",
"test_utils",
]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ move-vm-runtime = { git = "https://github.com/move-language/move", rev = "1b2d3b
move-vm-types = { git = "https://github.com/move-language/move", rev = "1b2d3b4274345f5b4b6a1a1bde5aee452003ab5b" }


sui-framework = { path = "../framework" }
sui-framework = { path = "../../sui_programmability/framework" }
sui-verifier = { path = "../../crates/sui-verifier" }
sui-types = { path = "../../crates/sui-types" }
sui-adapter = { path = "../adapter" }
sui-adapter = { path = "../../sui_programmability/adapter" }
sui_core = { path = "../../sui_core" }
2 changes: 1 addition & 1 deletion sui_programmability/adapter/transactional-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ edition = "2021"

[dev-dependencies]
datatest-stable = "0.1.1"
sui-transactional-test-runner = { path = "../../transactional-test-runner" }
sui-transactional-test-runner = { path = "../../../crates/sui-transactional-test-runner" }

[[test]]
name = "tests"
Expand Down

0 comments on commit bd335da

Please sign in to comment.