Removing unnecessary defer (the call was already at the end of the function it was in

)
pull/24/head
Samuel Nelson 2013-10-15 12:02:07 -06:00
parent c737e6cc4e
commit 46e05f3e57
1 changed files with 1 additions and 1 deletions

View File

@ -46,6 +46,6 @@ func Run(t *testing.T, suite TestingSuite) {
}
if tearDownAllSuite, ok := suite.(TearDownAllSuite); ok {
defer tearDownAllSuite.TearDownSuite()
tearDownAllSuite.TearDownSuite()
}
}