aboutsummaryrefslogtreecommitdiff
path: root/server/auth/github/github_test.go
diff options
context:
space:
mode:
authorMarco Bonetti <sid77@users.noreply.github.com>2016-06-14 09:40:14 +0100
committerGitHub <noreply@github.com>2016-06-14 09:40:14 +0100
commitc50fcd7500b78ad73d0d61246b03ed74560d2839 (patch)
tree724aba623713b352dc59e217ed26bddce7448189 /server/auth/github/github_test.go
parentdabb7c11624a53fc22b08ae8ac83f3604ec76d9e (diff)
parenta03243a826bb4eb5eebad19133f6b15e2f5dfdc2 (diff)
Merge pull request #21 from nsheridan/whitelist_support
Add support for a users whitelist
Diffstat (limited to 'server/auth/github/github_test.go')
-rw-r--r--server/auth/github/github_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/auth/github/github_test.go b/server/auth/github/github_test.go
index 1d6b801..c0b26a4 100644
--- a/server/auth/github/github_test.go
+++ b/server/auth/github/github_test.go
@@ -32,7 +32,7 @@ func TestNewEmptyOrganization(t *testing.T) {
a := assert.New(t)
_, err := newGithub()
- a.EqualError(err, "github_opts organization must not be empty")
+ a.EqualError(err, "github_opts organization and the users whitelist must not be both empty")
organization = "exampleorg"
}