diff options
author | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-03-18 10:32:22 -0300 |
---|---|---|
committer | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-03-18 11:07:30 -0300 |
commit | 231d4fb9f8a30e97fd9bcb7176ad8337557f6ea0 (patch) | |
tree | 5604a66607d0d0e888d7854b1d75af474bce15cb /spec/models/todo_spec.rb | |
parent | 2eeeb266e36abdbe78be8f71081bb19e83175819 (diff) | |
download | gitlab-ce-231d4fb9f8a30e97fd9bcb7176ad8337557f6ea0.tar.gz |
Use `Commit#short_id` instead of `Commit.truncate_sha`
Diffstat (limited to 'spec/models/todo_spec.rb')
-rw-r--r-- | spec/models/todo_spec.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/spec/models/todo_spec.rb b/spec/models/todo_spec.rb index ad744216421..0fbd36f3a22 100644 --- a/spec/models/todo_spec.rb +++ b/spec/models/todo_spec.rb @@ -117,9 +117,11 @@ describe Todo, models: true do describe '#to_reference' do it 'returns the short commit id for commits' do + subject.project = project subject.target_type = 'Commit' subject.commit_id = commit.id - expect(subject.to_reference).to eq Commit.truncate_sha(commit.id) + + expect(subject.to_reference).to eq commit.short_id end it 'returns reference for issuables' do |