From 95aaf298dd03d73ad42b34a58f2338ceb93cb9a7 Mon Sep 17 00:00:00 2001 From: Hyoung-yoon Kim Date: Wed, 13 Dec 2023 17:25:47 +0900 Subject: [PATCH] chore: code cleanup --- Makefile | 2 +- e2e/e2e_setup_test.go | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 29b30ba7..ba398822 100644 --- a/Makefile +++ b/Makefile @@ -193,7 +193,7 @@ test-unit-cover: ARGS=-timeout=10m -tags='$(UNIT_TEST_TAGS)' -coverprofile=$(TES test-unit-cover: TEST_PACKAGES=$(PACKAGES_UNIT) test-unit-race: ARGS=-timeout=10m -race -tags='$(TEST_RACE_TAGS)' test-unit-race: TEST_PACKAGES=$(PACKAGES_UNIT) -# test-e2e: docker-build-e2e +test-e2e: docker-build-e2e test-e2e: ARGS=-timeout=10m -v test-e2e: TEST_PACKAGES=$(PACKAGES_E2E) $(TEST_TARGETS): run-tests diff --git a/e2e/e2e_setup_test.go b/e2e/e2e_setup_test.go index b8d6e5ff..5454b87d 100644 --- a/e2e/e2e_setup_test.go +++ b/e2e/e2e_setup_test.go @@ -332,7 +332,6 @@ func (s *IntegrationTestSuite) runValidators(c *chain, portOffset int) { } s.endpoint = fmt.Sprintf("http://%s", s.valResources[s.chain.id][0].GetHostPort("1317/tcp")) - s.grpcEndpoint = s.valResources[s.chain.id][0].GetHostPort("9090/tcp") rpcClient, err := rpchttp.New("tcp://localhost:26657", "/websocket") s.Require().NoError(err)