From c8b2836b360cb9cdf79b748add83859bb609d820 Mon Sep 17 00:00:00 2001 From: krehermann Date: Tue, 25 Jun 2024 11:43:21 -0600 Subject: [PATCH] re-enable v2 test (#13656) --- core/services/ocr2/plugins/mercury/integration_plugin_test.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/core/services/ocr2/plugins/mercury/integration_plugin_test.go b/core/services/ocr2/plugins/mercury/integration_plugin_test.go index 4089cc485c..1dedaadcb5 100644 --- a/core/services/ocr2/plugins/mercury/integration_plugin_test.go +++ b/core/services/ocr2/plugins/mercury/integration_plugin_test.go @@ -6,23 +6,19 @@ import ( "testing" "github.com/smartcontractkit/chainlink/v2/core/config/env" - "github.com/smartcontractkit/chainlink/v2/core/internal/testutils" ) func TestIntegration_MercuryV1_Plugin(t *testing.T) { t.Setenv(string(env.MercuryPlugin.Cmd), "chainlink-mercury") - integration_MercuryV1(t) } func TestIntegration_MercuryV2_Plugin(t *testing.T) { - testutils.SkipFlakey(t, "https://smartcontract-it.atlassian.net/browse/MERC-5697") t.Setenv(string(env.MercuryPlugin.Cmd), "chainlink-mercury") integration_MercuryV2(t) } func TestIntegration_MercuryV3_Plugin(t *testing.T) { t.Setenv(string(env.MercuryPlugin.Cmd), "chainlink-mercury") - integration_MercuryV3(t) }