Skip to content

Commit

Permalink
fix: Make Test Suites Run Sequentially #12114
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderbez authored Jun 1, 2022
1 parent b145333 commit 5905dd7
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 5905dd7

Please sign in to comment.