#23 fixes context in tests

This commit is contained in:
Alex Senger 2024-09-20 11:37:52 +02:00
parent 4d112e7a3f
commit 27c6be0d1b
No known key found for this signature in database
GPG key ID: 0B4A96F8AF6934CF
2 changed files with 2 additions and 2 deletions

View file

@ -152,7 +152,7 @@ func TestCheckpoint_Get_NoRows(t *testing.T) {
if err := mock.ExpectationsWereMet(); err != nil {
t.Errorf("there were unfulfilled expectations: %s", err)
}
_ = ck.Shutdown()
_ = ck.Shutdown(ctx)
}
func TestCheckpoint_Get_QueryError(t *testing.T) {

View file

@ -1,4 +1,4 @@
// go:build unit
//go:build unit
package redis