From cea49ba2b9dc8eaf890f2e9a116d320b05428669 Mon Sep 17 00:00:00 2001 From: Akhil Kumar P <36399231+akhilkumarpilli@users.noreply.github.com> Date: Thu, 24 Oct 2024 16:16:06 +0530 Subject: [PATCH] test: migrate e2e/baseapp to integration tests (#22357) --- tests/{e2e => integration}/baseapp/block_gas_test.go | 5 +---- tests/{e2e => integration}/baseapp/utils.go | 0 2 files changed, 1 insertion(+), 4 deletions(-) rename tests/{e2e => integration}/baseapp/block_gas_test.go (98%) rename tests/{e2e => integration}/baseapp/utils.go (100%) diff --git a/tests/e2e/baseapp/block_gas_test.go b/tests/integration/baseapp/block_gas_test.go similarity index 98% rename from tests/e2e/baseapp/block_gas_test.go rename to tests/integration/baseapp/block_gas_test.go index 8de527ec5b..f883b68db9 100644 --- a/tests/e2e/baseapp/block_gas_test.go +++ b/tests/integration/baseapp/block_gas_test.go @@ -1,6 +1,3 @@ -//go:build e2e -// +build e2e - package baseapp_test import ( @@ -26,7 +23,7 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" "github.com/cosmos/cosmos-sdk/runtime" - baseapputil "github.com/cosmos/cosmos-sdk/tests/e2e/baseapp" + baseapputil "github.com/cosmos/cosmos-sdk/tests/integration/baseapp" "github.com/cosmos/cosmos-sdk/testutil" "github.com/cosmos/cosmos-sdk/testutil/configurator" simtestutil "github.com/cosmos/cosmos-sdk/testutil/sims" diff --git a/tests/e2e/baseapp/utils.go b/tests/integration/baseapp/utils.go similarity index 100% rename from tests/e2e/baseapp/utils.go rename to tests/integration/baseapp/utils.go