From 0575fdb313384f2f12cdd9527f872898aaecf2bc Mon Sep 17 00:00:00 2001 From: "Guillaume J. Charmes" Date: Fri, 24 May 2013 11:31:11 -0700 Subject: [PATCH] Fix issue within auth test Upstream-commit: 0146f65a448d2d42271300f1477ea9fa378d6360 Component: engine --- components/engine/api_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/engine/api_test.go b/components/engine/api_test.go index de4289728e..06413e1303 100644 --- a/components/engine/api_test.go +++ b/components/engine/api_test.go @@ -56,7 +56,7 @@ func TestGetAuth(t *testing.T) { t.Fatalf("%d OK or 0 expected, received %d\n", http.StatusOK, r.Code) } - newAuthConfig := srv.registry.GetAuthConfig() + newAuthConfig := srv.registry.GetAuthConfig(false) if newAuthConfig.Username != authConfig.Username || newAuthConfig.Email != authConfig.Email { t.Fatalf("The auth configuration hasn't been set correctly")