Skip to content

Commit

Permalink
fix: point std to local version for forc-client cli tests (FuelLabs#5457
Browse files Browse the repository at this point in the history
)

## Description

It seems like we accidentally depend on released version of std in
forc-client deployment cli tests (more specifically the test folder
https://github.com/FuelLabs/sway/tree/master/forc-plugins/forc-client/tests).
This PR fixes it to point local version of std so that release PRs such
as FuelLabs#5452 won't get blocked.
  • Loading branch information
kayagokalp authored Jan 12, 2024
1 parent e0dc2dd commit 5ee8877
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
13 changes: 13 additions & 0 deletions forc-plugins/forc-client/tests/Forc.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[[package]]
name = "core"
source = "path+from-root-F252333F9C4A5D78"

[[package]]
name = "std"
source = "path+from-root-F252333F9C4A5D78"
dependencies = ["core"]

[[package]]
name = "tests"
source = "member"
dependencies = ["std"]
1 change: 1 addition & 0 deletions forc-plugins/forc-client/tests/Forc.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ license = "Apache-2.0"
name = "tests"

[dependencies]
std = { path = "../../../sway-lib-std/" }

0 comments on commit 5ee8877

Please sign in to comment.