From 84af75e3fcfa909939aaf0feeb49951f40a2c299 Mon Sep 17 00:00:00 2001 From: subnetdev0 <163657355+subnetdev0@users.noreply.github.com> Date: Sat, 27 Apr 2024 10:52:52 +0100 Subject: [PATCH] Correct typos in fixture.go Signed-off-by: subnetdev0 <163657355+subnetdev0@users.noreply.github.com> --- e2e/localnet/network/fixture.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/e2e/localnet/network/fixture.go b/e2e/localnet/network/fixture.go index c995e4077..b14ff63c4 100644 --- a/e2e/localnet/network/fixture.go +++ b/e2e/localnet/network/fixture.go @@ -50,7 +50,7 @@ type FixtureConfig struct { containerName string httpAddress string - wsAdddress string + wsAddress string goVersion string } @@ -63,7 +63,7 @@ func NewFixtureConfig( localnetImage, containerName, httpAddress, - wsAdddress, + wsAddress, goVersion string, ) *FixtureConfig { // Get file path of the caller of NewFixtureConfig. @@ -81,7 +81,7 @@ func NewFixtureConfig( localnetImage: localnetImage, containerName: containerName, httpAddress: httpAddress, - wsAdddress: wsAdddress, + wsAddress: wsAddress, goVersion: goVersion, } } @@ -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,