Skip to content

Commit

Permalink
why the f is go build not picking these up
Browse files Browse the repository at this point in the history
  • Loading branch information
badgersrus committed Sep 11, 2024
1 parent 5c1c003 commit 134fa4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integration/faucet/faucet_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const (
func TestFaucet(t *testing.T) {
t.Skip("Skipping because it is too flaky")

startPort := integration.StartPortFaucetUnitTest
startPort := integration.TestPorts.TestFaucetPort
createObscuroNetwork(t, startPort)
// This sleep is required to ensure the initial rollup exists, and thus contract deployer can check its balance.
time.Sleep(2 * time.Second)
Expand All @@ -54,7 +54,7 @@ func TestFaucet(t *testing.T) {
PK: "0x" + contractDeployerPrivateKeyHex,
JWTSecret: "This_is_secret",
ChainID: big.NewInt(integration.TenChainID),
ServerPort: integration.StartPortFaucetHTTPUnitTest,
ServerPort: integration.TestPorts.TestFaucetHTTPPort,
DefaultFundAmount: new(big.Int).Mul(big.NewInt(100), big.NewInt(1e18)),
}
faucetContainer, err := container.NewFaucetContainerFromConfig(faucetConfig)
Expand Down

0 comments on commit 134fa4b

Please sign in to comment.