Open sourcegraph-bot opened 4 years ago
Using a proper defined cleanup function like
t.Cleanup(func () { // do sth })
is more explicit than just
defer func () { // do sth }
so let's use that approach.
Using a proper defined cleanup function like
is more explicit than just
so let's use that approach.