summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-03-12 16:34:23 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-03-12 16:34:23 +0200
commitcf971ba87bf7bfbbd5a783958e644ad75542920a (patch)
tree8d530ac82429f1ed701eb5eade571121a110fd71
parent5c32dbdabc5d5417d2d8d92ed1ff53e74bddaf1b (diff)
downloadgitlab-shell-cf971ba87bf7bfbbd5a783958e644ad75542920a.tar.gz
Use large repo instead one with prompt
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-rw-r--r--spec/gitlab_projects_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/gitlab_projects_spec.rb b/spec/gitlab_projects_spec.rb
index 22a9d21..c60febb 100644
--- a/spec/gitlab_projects_spec.rb
+++ b/spec/gitlab_projects_spec.rb
@@ -214,7 +214,7 @@ describe GitlabProjects do
end
context 'timeout' do
- let(:gl_projects) { build_gitlab_projects('import-project', repo_name, 'https://mystery@github.com/user/project.git', '1') }
+ let(:gl_projects) { build_gitlab_projects('import-project', repo_name, 'https://github.com/gitlabhq/gitlabhq.git', '1') }
it { gl_projects.exec.should be_false }
@@ -224,7 +224,7 @@ describe GitlabProjects do
end
it "should log an import-project event" do
- message = "Importing project #{repo_name} from <https://mystery@github.com/user/project.git> failed due to timeout."
+ message = "Importing project #{repo_name} from <https://github.com/gitlabhq/gitlabhq.git> failed due to timeout."
$logger.should_receive(:error).with(message)
gl_projects.exec
end