summaryrefslogtreecommitdiffstats
path: root/api/oauth_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'api/oauth_test.go')
-rw-r--r--api/oauth_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/api/oauth_test.go b/api/oauth_test.go
index da069aefe..1dcdd55e3 100644
--- a/api/oauth_test.go
+++ b/api/oauth_test.go
@@ -156,8 +156,8 @@ func TestGetOAuthAppsByUser(t *testing.T) {
utils.Cfg.ServiceSettings.EnableOAuthServiceProvider = true
- if _, err := Client.GetOAuthAppsByUser(); err == nil {
- t.Fatal("Should have failed. only admin is permitted")
+ if _, err := Client.GetOAuthAppsByUser(); err != nil {
+ t.Fatal("Should have passed.")
}
*utils.Cfg.ServiceSettings.EnableOnlyAdminIntegrations = false