From 6831024281499805cf5187d3ea3c8f34e0e5fcfb Mon Sep 17 00:00:00 2001
From: Kevin Lyda <kevin@ie.suberic.net>
Date: Sat, 14 Jan 2017 22:40:37 +0000
Subject: [PATCH] Instantiate correct object in gitlab test.

---
 server/auth/gitlab/gitlab_test.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server/auth/gitlab/gitlab_test.go b/server/auth/gitlab/gitlab_test.go
index 4f682e8a..70ec7681 100644
--- a/server/auth/gitlab/gitlab_test.go
+++ b/server/auth/gitlab/gitlab_test.go
@@ -51,7 +51,7 @@ func TestNewEmptyGroupList(t *testing.T) {
 func TestStartSession(t *testing.T) {
 	a := assert.New(t)
 
-	p, _ := newGithub()
+	p, _ := newGitlab()
 	s := p.StartSession("test_state")
 	a.Contains(s.AuthURL, "exampleorg/oauth/authorize")
 	a.Contains(s.AuthURL, "state=test_state")
-- 
GitLab