From ae833a8b83bbdfa3ad95af56ca470e2ac51baadf Mon Sep 17 00:00:00 2001 From: Sean McGivern Date: Mon, 17 Apr 2017 14:23:39 +0100 Subject: Fix user activities HTTP clone spec --- spec/requests/git_http_spec.rb | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/spec/requests/git_http_spec.rb b/spec/requests/git_http_spec.rb index 069ff4bdaa3..316742ff076 100644 --- a/spec/requests/git_http_spec.rb +++ b/spec/requests/git_http_spec.rb @@ -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 -- cgit v1.2.1