Skip to content

Commit

Permalink
fix: Make Test Suites Run Sequentially #12114 (#12116)
Browse files Browse the repository at this point in the history
(cherry picked from commit 5905dd7)

Co-authored-by: Aleksandr Bezobchuk <alexanderbez@users.noreply.github.com>
  • Loading branch information
mergify[bot] and alexanderbez authored Jun 1, 2022
1 parent 461cd62 commit c12cf1e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion types/coin_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ func TestCoinTestSuite(t *testing.T) {
}

func (s *coinTestSuite) SetupSuite() {
s.T().Parallel()
zero := sdk.NewInt(0)
one := sdk.OneInt()
two := sdk.NewInt(2)
Expand Down
4 changes: 0 additions & 4 deletions types/events_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,6 @@ func TestEventsTestSuite(t *testing.T) {
suite.Run(t, new(eventsTestSuite))
}

func (s *eventsTestSuite) SetupSuite() {
s.T().Parallel()
}

func (s *eventsTestSuite) TestAppendEvents() {
e1 := sdk.NewEvent("transfer", sdk.NewAttribute("sender", "foo"))
e2 := sdk.NewEvent("transfer", sdk.NewAttribute("sender", "bar"))
Expand Down

0 comments on commit c12cf1e

Please sign in to comment.