Skip to content

Commit

Permalink
Revert some changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandear authored and dolmen committed Oct 30, 2023
1 parent 375474c commit 351d277
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions suite/suite_test.go
Expand Up @@ -213,13 +213,15 @@ func (suite *SuiteTester) TearDownTest() {
func (suite *SuiteTester) TestOne() {
beforeCount := suite.TestOneRunCount
suite.TestOneRunCount++
assert.Equal(suite.T(), suite.TestOneRunCount, beforeCount+1)
suite.Equal(suite.TestOneRunCount, beforeCount+1)
}

// TestTwo is another example of a test.
func (suite *SuiteTester) TestTwo() {
beforeCount := suite.TestTwoRunCount
suite.TestTwoRunCount++
assert.NotEqual(suite.T(), suite.TestTwoRunCount, beforeCount)
suite.NotEqual(suite.TestTwoRunCount, beforeCount)
}

Expand Down

0 comments on commit 351d277

Please sign in to comment.