Fix an assertion typo.

This commit is contained in:
M. J. Fromberger
2021-08-27 08:59:52 -07:00
parent 1d99e08ef3
commit 3b441e1751

View File

@@ -329,5 +329,5 @@ func mustSetupDB(t *testing.T) *dockertest.Pool {
func mustTeardown(t *testing.T, pool *dockertest.Pool) {
t.Helper()
require.Nil(t, pool.Purge(resource))
require.Nil(db.Close())
require.Nil(t, db.Close())
}