From a69a5bb9445f0c9225e85c9631d72687e0cbebbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Colin=20Axn=C3=A9r?= <25233464+colin-axner@users.noreply.github.com> Date: Thu, 11 Mar 2021 17:46:09 +0100 Subject: [PATCH] fix sdk test --- testing/sdk_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/sdk_test.go b/testing/sdk_test.go index 41bd706628d..2136dd07547 100644 --- a/testing/sdk_test.go +++ b/testing/sdk_test.go @@ -199,7 +199,7 @@ func (s *IntegrationTestSuite) TestLegacyRestErrMessages() { // a solo machine client state clientStateJSON := testutil.WriteToNewTempFile( s.T(), - `{"@type":"/ibcgo.lightclients.solomachine.v1.ClientState","sequence":"1","frozen_sequence":"0","consensus_state":{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AtK50+5pJOoaa04qqAqrnyAqsYrwrR/INnA6UPIaYZlp"},"diversifier":"testing","timestamp":"10"},"allow_update_after_proposal":false}`, + `{"@type":"/ibc.lightclients.solomachine.v1.ClientState","sequence":"1","frozen_sequence":"0","consensus_state":{"public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AtK50+5pJOoaa04qqAqrnyAqsYrwrR/INnA6UPIaYZlp"},"diversifier":"testing","timestamp":"10"},"allow_update_after_proposal":false}`, ) // Write consensus json to temp file, used for an IBC message. @@ -207,7 +207,7 @@ func (s *IntegrationTestSuite) TestLegacyRestErrMessages() { // a solo machine consensus state consensusJSON := testutil.WriteToNewTempFile( s.T(), - `{"@type":"/ibcgo.lightclients.solomachine.v1.ConsensusState","public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AtK50+5pJOoaa04qqAqrnyAqsYrwrR/INnA6UPIaYZlp"},"diversifier":"testing","timestamp":"10"}`, + `{"@type":"/ibc.lightclients.solomachine.v1.ConsensusState","public_key":{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AtK50+5pJOoaa04qqAqrnyAqsYrwrR/INnA6UPIaYZlp"},"diversifier":"testing","timestamp":"10"}`, ) testCases := []struct {