fix: Make Test Suites Run Sequentially #12114

This commit is contained in:
Aleksandr Bezobchuk
2022-06-01 11:57:31 -04:00
committed by GitHub
parent b1453335ed
commit 5905dd711d
2 changed files with 0 additions and 5 deletions
-1
View File
@@ -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)
-4
View File
@@ -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"))