Fix user activities HTTP clone spec

This commit is contained in:
Sean McGivern 2017-04-17 14:23:39 +01:00
parent 9bb9cbfd93
commit ae833a8b83
1 changed files with 8 additions and 7 deletions

View File

@ -158,13 +158,6 @@ describe 'Git HTTP requests', lib: true do
expect(response).to have_http_status(:ok)
end
end
it 'updates the user last activity' do
expect(user_activity(user)).to be_nil
download(path, {}) do |response|
expect(user_activity(user)).to be_present
end
end
end
context 'but only project members are allowed' do
@ -263,6 +256,14 @@ describe 'Git HTTP requests', lib: true do
expect(response.content_type.to_s).to eq(Gitlab::Workhorse::INTERNAL_API_CONTENT_TYPE)
end
end
it 'updates the user last activity', :redis do
expect(user_activity(user)).to be_nil
download(path, env) do |response|
expect(user_activity(user)).to be_present
end
end
end
context "when an oauth token is provided" do