test: Global OAuth should not be deleted

Expected to fail: Global (instance-wide) OAuth application should not be deleted, but it is
This commit is contained in:
Otto Richter 2024-11-23 19:49:55 +01:00
parent 9057100182
commit 665d5f7317
2 changed files with 9 additions and 0 deletions

View file

@ -296,4 +296,5 @@ func TestOrphanedOAuth2Applications(t *testing.T) {
require.NoError(t, err)
assert.EqualValues(t, 0, count)
unittest.AssertExistsIf(t, false, &auth_model.OAuth2Application{ID: 1002})
unittest.AssertExistsIf(t, true, &auth_model.OAuth2Application{ID: 1003})
}