From a93c004cda970a2f00f3dead39ec0cef942f5e49 Mon Sep 17 00:00:00 2001 From: Domino Valdano <2644901+reductionista@users.noreply.github.com> Date: Wed, 26 Feb 2025 23:22:17 -0800 Subject: [PATCH] Uncomment ChainWriter tests --- integration-tests/relayinterface/chain_components_test.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/integration-tests/relayinterface/chain_components_test.go b/integration-tests/relayinterface/chain_components_test.go index 2c7fa330c..9b1e85a20 100644 --- a/integration-tests/relayinterface/chain_components_test.go +++ b/integration-tests/relayinterface/chain_components_test.go @@ -217,11 +217,9 @@ func RunChainComponentsSolanaTests[T WrappedTestingT[T]](t T, it *SolanaChainCom }}, } - if false { - RunTests(t, it, testCases) - } + RunTests(t, it, testCases) RunContractReaderTests(t, it) - //RunChainWriterTests(t, it) + RunChainWriterTests(t, it) } func RunChainComponentsInLoopSolanaTests[T WrappedTestingT[T]](t T, it ChainComponentsInterfaceTester[T]) {