diff options
author | Angus MacArthur <amacarthur@blackberry.com> | 2013-04-16 01:09:22 -0400 |
---|---|---|
committer | Angus MacArthur <amacarthur@blackberry.com> | 2013-04-16 01:09:22 -0400 |
commit | 934aacb34ba65cd47ce8fefd4cad64c4a3951856 (patch) | |
tree | 8e98d8e3ce3f2cb2a032da47ce4fb88b52bc7572 /spec/gitlab_projects_spec.rb | |
parent | e104bdf13f66319b450243c6dcb1d199e554b431 (diff) | |
download | gitlab-shell-934aacb34ba65cd47ce8fefd4cad64c4a3951856.tar.gz |
more fixes for pull reuest
Change-Id: I1b3d64d79187c414e326928a96427d1cc6176224
Diffstat (limited to 'spec/gitlab_projects_spec.rb')
-rw-r--r-- | spec/gitlab_projects_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/gitlab_projects_spec.rb b/spec/gitlab_projects_spec.rb index ef7fa96..f9d63b0 100644 --- a/spec/gitlab_projects_spec.rb +++ b/spec/gitlab_projects_spec.rb @@ -90,8 +90,8 @@ describe GitlabProjects do it "should fork the repo" do gl_projects.exec File.exists?(File.join(tmp_repos_path, 'forked-to-namespace', repo_name)).should be_true - File.exists?(File.join(tmp_repos_path, 'forked-to-namespace', repo_name, '/hooks/update/post-receive')).should be_true - File.exists?(File.join(tmp_repos_path, 'forked-to-namespace', repo_name, '/hooks/update/')).should be_true + File.exists?(File.join(tmp_repos_path, 'forked-to-namespace', repo_name, '/hooks/update')).should be_true + File.exists?(File.join(tmp_repos_path, 'forked-to-namespace', repo_name, '/hooks/post-receive')).should be_true end end |