File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -166,7 +166,7 @@ jobs:
166
166
- name : system tests v2
167
167
if : env.GIT_DIFF
168
168
run : |
169
- COSMOS_BUILD_OPTIONS=v2 make test-system
169
+ make test-system
170
170
- uses : actions/upload-artifact@v4
171
171
if : failure()
172
172
with :
Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ test-all: test-unit test-integration test-ledger-mock test-race
24
24
.PHONY : test-system
25
25
test-system : build
26
26
mkdir -p ./tests/systemtests/binaries/
27
- cp $(BUILDDIR ) /simd $( if $( findstring v2, $( COSMOS_BUILD_OPTIONS ) ) ,v2) ./tests/systemtests/binaries/
28
- $(MAKE ) -C tests/systemtests test
27
+ cp $(BUILDDIR ) /simdv2 ./tests/systemtests/binaries/
28
+ COSMOS_BUILD_OPTIONS=v2 $(MAKE ) -C tests/systemtests test
29
29
30
30
31
31
TEST_PACKAGES =./...
Original file line number Diff line number Diff line change @@ -401,7 +401,7 @@ func TestGetTxEvents_GRPCGateway(t *testing.T) {
401
401
} else {
402
402
require .NoError (t , err )
403
403
txs := gjson .Get (string (res ), "txs" ).Array ()
404
- require .Equal (t , len (txs ), tc . expLen )
404
+ require .Equal (t , tc . expLen , len (txs ))
405
405
}
406
406
})
407
407
}
You can’t perform that action at this time.
0 commit comments