fix err assertion in TestScheduler_RemoveJob (#830)

This commit is contained in:
Oleksandr Redko 2025-02-14 17:12:39 +02:00 committed by GitHub
parent 8998063eda
commit 34fc56e077
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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())
})
}