summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-07-14 11:23:46 +0200
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-07-14 11:23:46 +0200
commit881bc45abb5999b771c1ef01faae2b4e65f7b410 (patch)
tree5e34bb6bd8f3f57f55e05a5eabe202d4624d8346
parent14fbff00b59ad3aeff7d585039720bb5743b13da (diff)
downloadgitlab-ce-881bc45abb5999b771c1ef01faae2b4e65f7b410.tar.gz
Fix rubocop offense in projects controller specs
-rw-r--r--spec/controllers/projects_controller_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/controllers/projects_controller_spec.rb b/spec/controllers/projects_controller_spec.rb
index 2a3c382b82c..61d285c29ae 100644
--- a/spec/controllers/projects_controller_spec.rb
+++ b/spec/controllers/projects_controller_spec.rb
@@ -238,7 +238,7 @@ describe ProjectsController do
expect { update_project path: 'renamed_path' }
.not_to change { project.reload.path }
- expect(project.reload.path).to_not include 'renamed_path'
+ expect(project.reload.path).not_to include 'renamed_path'
expect(controller).to set_flash[:alert].to(/container registry tags/)
expect(response).to have_http_status(200)
end