From 46d10f015b90d459ac4722d79b18e562425aec91 Mon Sep 17 00:00:00 2001 From: Fergal Gribben Date: Thu, 11 Jul 2024 18:24:58 +0100 Subject: [PATCH] Update tests --- integration-tests/load/automationv2_1/automationv2_1_test.go | 4 ---- integration-tests/testconfig/automation/config.go | 4 ---- 2 files changed, 8 deletions(-) diff --git a/integration-tests/load/automationv2_1/automationv2_1_test.go b/integration-tests/load/automationv2_1/automationv2_1_test.go index b0555cdd3f8..0fe13d4bc73 100644 --- a/integration-tests/load/automationv2_1/automationv2_1_test.go +++ b/integration-tests/load/automationv2_1/automationv2_1_test.go @@ -368,10 +368,6 @@ Load Config: a.SetMercuryCredentialName("cred1") } - if *conf.UseLogBufferV1 { - a.SetUseLogBufferV1(true) - } - startTimeTestSetup := time.Now() l.Info().Str("START_TIME", startTimeTestSetup.String()).Msg("Test setup started") diff --git a/integration-tests/testconfig/automation/config.go b/integration-tests/testconfig/automation/config.go index bde989f544b..93697b869a6 100644 --- a/integration-tests/testconfig/automation/config.go +++ b/integration-tests/testconfig/automation/config.go @@ -160,7 +160,6 @@ type AutomationConfig struct { PluginConfig *PluginConfig `toml:"PluginConfig"` PublicConfig *PublicConfig `toml:"PublicConfig"` RegistrySettings *RegistrySettings `toml:"RegistrySettings"` - UseLogBufferV1 *bool `toml:"use_log_buffer_v1"` } func (c *AutomationConfig) Validate() error { @@ -173,9 +172,6 @@ func (c *AutomationConfig) Validate() error { if err := c.RegistrySettings.Validate(); err != nil { return err } - if c.UseLogBufferV1 == nil { - return errors.New("use_log_buffer_v1 must be set") - } return nil }