```golang // this work repo.ExpectDelete().For(&Book{ID: 1}).Success() // this doesn't work, but it should repo.ExpectDelete().For(Book{ID: 1}).Success() ```