Commit 573f1f4ade80cc3b66723ad12594467e881b4510
1 parent
71851a7e
Exists in
spb-stable
and in
3 other branches
Fix project model spec
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
spec/models/project_spec.rb
| ... | ... | @@ -167,10 +167,10 @@ describe Project do |
| 167 | 167 | context 'with namespace' do |
| 168 | 168 | before do |
| 169 | 169 | @group = create :group, name: 'gitlab' |
| 170 | - @project = create(:project, name: 'gitlab-ci', namespace: @group) | |
| 170 | + @project = create(:project, name: 'gitlabhq', namespace: @group) | |
| 171 | 171 | end |
| 172 | 172 | |
| 173 | - it { @project.to_param.should == "gitlab/gitlab-ci" } | |
| 173 | + it { @project.to_param.should == "gitlab/gitlabhq" } | |
| 174 | 174 | end |
| 175 | 175 | end |
| 176 | 176 | ... | ... |