diff options
author | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2018-01-03 16:17:11 -0200 |
---|---|---|
committer | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2018-01-03 16:17:11 -0200 |
commit | 3f5403ab74b2f60c1a306a2f617d1cd323854c7a (patch) | |
tree | 02e637fe05755099f51b0f19c2e67b3678212b1e | |
parent | 62ee2ccfcc1d765cf2b80ba8f7a226855f2f8a2f (diff) | |
download | gitlab-ce-3f5403ab74b2f60c1a306a2f617d1cd323854c7a.tar.gz |
Remove unused variable from bare repository importer spec
-rw-r--r-- | spec/lib/gitlab/bare_repository_import/importer_spec.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/spec/lib/gitlab/bare_repository_import/importer_spec.rb b/spec/lib/gitlab/bare_repository_import/importer_spec.rb index 99cc9c4bd41..b5d86df09d2 100644 --- a/spec/lib/gitlab/bare_repository_import/importer_spec.rb +++ b/spec/lib/gitlab/bare_repository_import/importer_spec.rb @@ -1,7 +1,6 @@ require 'spec_helper' describe Gitlab::BareRepositoryImport::Importer, repository: true do - let(:gitlab_shell) { Gitlab::Shell.new } let!(:admin) { create(:admin) } let!(:base_dir) { Dir.mktmpdir + '/' } let(:bare_repository) { Gitlab::BareRepositoryImport::Repository.new(base_dir, File.join(base_dir, "#{project_path}.git")) } |