Skip to content
This repository has been archived by the owner on Jun 9, 2024. It is now read-only.

Correct typos in fixture.go #1572

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions e2e/localnet/network/fixture.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ type FixtureConfig struct {

containerName string
httpAddress string
wsAdddress string
wsAddress string
goVersion string
}

Expand All @@ -63,7 +63,7 @@ func NewFixtureConfig(
localnetImage,
containerName,
httpAddress,
wsAdddress,
wsAddress,
goVersion string,
) *FixtureConfig {
// Get file path of the caller of NewFixtureConfig.
Expand All @@ -81,7 +81,7 @@ func NewFixtureConfig(
localnetImage: localnetImage,
containerName: containerName,
httpAddress: httpAddress,
wsAdddress: wsAdddress,
wsAddress: wsAddress,
goVersion: goVersion,
}
}
Expand Down Expand Up @@ -113,7 +113,7 @@ func NewTestFixture(t ginkgo.FullGinkgoTInterface, config *FixtureConfig) *TestF
localnetImage[1],
config.containerName,
config.httpAddress,
config.wsAdddress,
config.wsAddress,
[]string{
"GO_VERSION=" + config.goVersion,
"BASE_IMAGE=" + config.baseImage,
Expand Down
Loading