Skip to content

Commit

Permalink
remove v2 checks
Browse files Browse the repository at this point in the history
  • Loading branch information
tac0turtle committed Dec 26, 2024
1 parent aabd4b1 commit 9449408
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
4 changes: 0 additions & 4 deletions tests/systemtests/bankv2_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@ import (
)

func TestBankV2SendTxCmd(t *testing.T) {
// Currently only run with app v2
if !systest.IsV2() {
t.Skip()
}
// scenario: test bank send command
// given a running chain

Expand Down
4 changes: 0 additions & 4 deletions tests/systemtests/mint_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,6 @@ func TestMintQueries(t *testing.T) {

for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
// TODO: remove below check once grpc gateway is implemented in v2
if systest.IsV2() {
return
}
resp := systest.GetRequestWithHeaders(t, tc.url, tc.headers, http.StatusOK)
require.JSONEq(t, tc.expOut, string(resp))
})
Expand Down

0 comments on commit 9449408

Please sign in to comment.