summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/backend/grack_auth_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lib/gitlab/backend/grack_auth_spec.rb')
-rw-r--r--spec/lib/gitlab/backend/grack_auth_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/lib/gitlab/backend/grack_auth_spec.rb b/spec/lib/gitlab/backend/grack_auth_spec.rb
index 2dd27464de7..cd26dca0998 100644
--- a/spec/lib/gitlab/backend/grack_auth_spec.rb
+++ b/spec/lib/gitlab/backend/grack_auth_spec.rb
@@ -191,10 +191,10 @@ describe Grack::Auth, lib: true do
context "when a gitlab ci token is provided" do
let(:token) { "123" }
- let(:project) { FactoryGirl.create :empty_project, token: token }
+ let(:project) { FactoryGirl.create :empty_project }
before do
- project.update_attributes(token: token, builds_enabled: true)
+ project.update_attributes(runners_token: token, builds_enabled: true)
env["HTTP_AUTHORIZATION"] = ActionController::HttpAuthentication::Basic.encode_credentials("gitlab-ci-token", token)
end