mirror of https://github.com/go-co-op/gocron.git
fix err assertion in TestScheduler_RemoveJob (#830)
This commit is contained in:
parent
8998063eda
commit
34fc56e077
|
|
@ -1839,7 +1839,7 @@ func TestScheduler_RemoveJob(t *testing.T) {
|
|||
}
|
||||
|
||||
err := s.RemoveJob(id)
|
||||
assert.ErrorIs(t, err, err)
|
||||
assert.ErrorIs(t, err, tt.err)
|
||||
require.NoError(t, s.Shutdown())
|
||||
})
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue