Commit b9176afb authored by Elan Ruusamäe's avatar Elan Ruusamäe

update existing test

parent 31704680
...@@ -65,7 +65,7 @@ describe Gitlab::Identifier do ...@@ -65,7 +65,7 @@ describe Gitlab::Identifier do
commit = double(:commit, author_email: user.email) commit = double(:commit, author_email: user.email)
expect(project).to receive(:commit).with('123').twice.and_return(commit) expect(project).to receive(:commit).with('123').twice.and_return(commit)
expect(User).to receive(:find_by).once.and_call_original expect(User).to receive(:find_by_any_email).once.and_call_original
2.times do 2.times do
expect(identifier.identify_using_commit(project, '123')).to eq(user) expect(identifier.identify_using_commit(project, '123')).to eq(user)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment