Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Replace testify with gotest.tools in bank integration tests #14477

Merged
merged 21 commits into from
Jan 11, 2023
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
32b8f16
replace testify with gotest.tools in bank integration tests
likhita-809 Jan 4, 2023
1e5f34d
Merge branch 'main' of https://github.com/cosmos/cosmos-sdk into likh…
likhita-809 Jan 4, 2023
ef6df88
Merge branch 'main' of https://github.com/cosmos/cosmos-sdk into likh…
likhita-809 Jan 4, 2023
32badc4
run go mod tidy
likhita-809 Jan 4, 2023
ba696ce
Merge branch 'main' of https://github.com/cosmos/cosmos-sdk into likh…
likhita-809 Jan 5, 2023
a28e2b4
Merge branch 'main' of https://github.com/cosmos/cosmos-sdk into likh…
likhita-809 Jan 9, 2023
67ce3d4
Merge branch 'main' of https://github.com/cosmos/cosmos-sdk into likh…
likhita-809 Jan 9, 2023
115a8d2
Merge branch 'main' of https://github.com/cosmos/cosmos-sdk into likh…
likhita-809 Jan 10, 2023
e38b67b
wip: replace testify with gotest.tools
likhita-809 Jan 10, 2023
25cd4a8
Merge branch 'main' of https://github.com/cosmos/cosmos-sdk into likh…
likhita-809 Jan 10, 2023
31207dd
address review comment
likhita-809 Jan 10, 2023
492ba10
address review comment
likhita-809 Jan 10, 2023
ecf0f0d
fix something
likhita-809 Jan 10, 2023
f83de99
Merge branch 'main' of https://github.com/cosmos/cosmos-sdk into likh…
likhita-809 Jan 10, 2023
2905008
fix tests
likhita-809 Jan 10, 2023
d04b1c0
address review comment
likhita-809 Jan 11, 2023
02d7e7a
Merge branch 'main' of https://github.com/cosmos/cosmos-sdk into likh…
likhita-809 Jan 11, 2023
acf6c0b
make separate fixture for deterministic tests
likhita-809 Jan 11, 2023
c0a5171
Merge branch 'main' of https://github.com/cosmos/cosmos-sdk into likh…
likhita-809 Jan 11, 2023
62f128b
Merge branch 'main' into likhita/testify-to-gotest.tools-in-integrati…
atheeshp Jan 11, 2023
9a50ea5
Merge branch 'main' into likhita/testify-to-gotest.tools-in-integrati…
likhita-809 Jan 11, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ require (
github.com/cockroachdb/pebble v0.0.0-20220817183557-09c6e030a677 // indirect
github.com/cockroachdb/redact v1.0.8 // indirect
github.com/cockroachdb/sentry-go v0.6.1-cockroachdb.2 // indirect
github.com/cosmos/cosmos-sdk/tests v0.0.0-20230104083136-11f46a0bae58 // indirect
likhita-809 marked this conversation as resolved.
Show resolved Hide resolved
github.com/cosmos/gorocksdb v1.2.0 // indirect
github.com/creachadair/taskgroup v0.3.2 // indirect
github.com/danieljoos/wincred v1.1.2 // indirect
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,8 @@ github.com/cosmos/cosmos-proto v1.0.0-beta.1 h1:iDL5qh++NoXxG8hSy93FdYJut4XfgbSh
github.com/cosmos/cosmos-proto v1.0.0-beta.1/go.mod h1:8k2GNZghi5sDRFw/scPL8gMSowT1vDA+5ouxL8GjaUE=
github.com/cosmos/cosmos-sdk/db v1.0.0-beta.1.0.20220726092710-f848e4300a8a h1:2humuGPw3O5riJVFq/E2FRjF57UrO97W1qJcGVmK+6k=
github.com/cosmos/cosmos-sdk/db v1.0.0-beta.1.0.20220726092710-f848e4300a8a/go.mod h1:c8IO23vgNxueCCJlSI9awQtcxsvc+buzaeThB85qfBU=
github.com/cosmos/cosmos-sdk/tests v0.0.0-20230104083136-11f46a0bae58 h1:6VqPujRuujdaAc8rTym47FJnm3Pb4c2Y+/QEUmtEdUw=
github.com/cosmos/cosmos-sdk/tests v0.0.0-20230104083136-11f46a0bae58/go.mod h1:7h7HeRRvZ53ZCJsiGi+TeGaVGkTP7CrEuIuCN6KrWqQ=
github.com/cosmos/go-bip39 v0.0.0-20180819234021-555e2067c45d/go.mod h1:tSxLoYXyBmiFeKpvmq4dzayMdCjCnu8uqmCysIGBT2Y=
github.com/cosmos/go-bip39 v1.0.0 h1:pcomnQdrdH22njcAatO0yWojsUnCO3y2tNoV1cb6hHY=
github.com/cosmos/go-bip39 v1.0.0/go.mod h1:RNJv0H/pOIVgxw6KS7QeX2a0Uo0aKUlfhZ4xuwvCdJw=
Expand Down
Loading