summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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