From 8b84c7c1682b12491e0f70765bbbbea19ae437e9 Mon Sep 17 00:00:00 2001 From: Callum Waters Date: Wed, 7 Jul 2021 20:06:55 +0200 Subject: [PATCH] e2e: disable app tests for light client (#6672) --- test/e2e/tests/app_test.go | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/test/e2e/tests/app_test.go b/test/e2e/tests/app_test.go index a86a9c9ab..2b6d2f5e8 100644 --- a/test/e2e/tests/app_test.go +++ b/test/e2e/tests/app_test.go @@ -39,7 +39,9 @@ func TestApp_InitialState(t *testing.T) { // block and the node sync status. func TestApp_Hash(t *testing.T) { testNode(t, func(t *testing.T, node e2e.Node) { - if node.Mode == e2e.ModeSeed { + // disables tests for light clients + // see https://github.com/tendermint/tendermint/issues/6671 + if node.Mode == e2e.ModeSeed || node.Mode == e2e.ModeLight { return } @@ -64,7 +66,9 @@ func TestApp_Hash(t *testing.T) { // Tests that we can set a value and retrieve it. func TestApp_Tx(t *testing.T) { testNode(t, func(t *testing.T, node e2e.Node) { - if node.Mode == e2e.ModeSeed { + // disables tests for light clients + // see https://github.com/tendermint/tendermint/issues/6671 + if node.Mode == e2e.ModeSeed || node.Mode == e2e.ModeLight { return }