Skip to content

Commit 209c56d

Browse files
authored
Merge pull request #146 from javan/fix-1d133e8-author
Fix author of 1d133e8
2 parents 98e2a5b + 31092a6 commit 209c56d

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

app/models/names_manager/hard_coded_authors.rb

+4
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,10 @@ def hard_coded_authors(commit)
9090
when '9668cc3bb03740b13477df0832332eec71563bc5'
9191
# Backport of the above commit.
9292
['Eileen M. Uchitelle', 'Aaron Patterson', 'Tsukuru Tanimichi']
93+
when '1d133e8a4725439e4a61d53ce913eba9dcab42d3'
94+
# This attribution was incorrectly given to "direct_upload_xls_in_chrome",
95+
# (the branch name) which was included in the commit messages in brackets.
96+
['Nick Weiland']
9397
else
9498
nil
9599
end

test/credits/hard_coded_authors_test.rb

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ class SpecialCasedCommitsTest < ActiveSupport::TestCase
3131
assert_contributor_names '872e22c', 'Daniel Rikowski', 'Genadi Samokovarov'
3232
assert_contributor_names '9220935', 'Eileen M. Uchitelle', 'Aaron Patterson', 'Tsukuru Tanimichi'
3333
assert_contributor_names '9668cc3', 'Eileen M. Uchitelle', 'Aaron Patterson', 'Tsukuru Tanimichi'
34+
assert_contributor_names '1d133e8', 'Nick Weiland'
3435
end
3536
end
3637
end

0 commit comments

Comments
 (0)