diff --git a/spec/requests/git_http_spec.rb b/spec/requests/git_http_spec.rb
index 967e0ab6e740e2a5574caea160fd091e450e9755..c1aad48ad04f0023dc7d9294de61ab01b247d586 100644
--- a/spec/requests/git_http_spec.rb
+++ b/spec/requests/git_http_spec.rb
@@ -60,13 +60,13 @@ describe 'Git HTTP requests', lib: true do
       before do
         project.update_attribute(:visibility_level, Project::PUBLIC)
       end
-      
+
       it "responds with status 200" do
         download(path, env) do |response|
           expect(response.status).to eq(200)
         end
       end
-      
+
       context 'but git-upload-pack is disabled' do
         it "responds with status 404" do
           allow(Gitlab.config.gitlab_shell).to receive(:upload_pack).and_return(false)