summaryrefslogtreecommitdiff
path: root/spec/support
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-04-03 10:06:31 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-04-03 10:06:31 +0300
commit413a310faa17f626f351fa3afd6423e8782935a9 (patch)
tree290a418a9750d66fd43282b0a51157abb4eef7a2 /spec/support
parent7e8bf92bd77f5a63802c87bfbb6282a17a43c691 (diff)
downloadgitlab-ce-413a310faa17f626f351fa3afd6423e8782935a9.tar.gz
fixed blame and mr factory
Diffstat (limited to 'spec/support')
-rw-r--r--spec/support/matchers.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/support/matchers.rb b/spec/support/matchers.rb
index 29d16ecbac7..15fb47004e9 100644
--- a/spec/support/matchers.rb
+++ b/spec/support/matchers.rb
@@ -3,7 +3,7 @@ RSpec::Matchers.define :be_valid_commit do
actual != nil
actual.id == ValidCommit::ID
actual.message == ValidCommit::MESSAGE
- actual.author.name == ValidCommit::AUTHOR_FULL_NAME
+ actual.author_name == ValidCommit::AUTHOR_FULL_NAME
end
end