diff --git a/app/models/names_manager/canonical_names.rb b/app/models/names_manager/canonical_names.rb index 5d00bcdd..a2c3d7c3 100644 --- a/app/models/names_manager/canonical_names.rb +++ b/app/models/names_manager/canonical_names.rb @@ -553,6 +553,7 @@ def self.map(canonical_name, *also_as) map 'Jean Baptiste Barth', 'jbbarth' map 'Jean Boussier', 'Jean byroot Boussier' map 'Jean Helou', "jean.helou\100gmail.com", 'jean.helou' + map 'Jean-François Labbé', "Jean-Francois Labbé", "jean-francois labbe" map 'Jean-Philippe Bougie', "jp.bougie\100gmail.com" map 'Jeff Berg', "jeff\100ministrycentered.com" map 'Jeff Cohen', "cohen.jeff\100gmail.com" diff --git a/test/credits/canonical_names_test.rb b/test/credits/canonical_names_test.rb index 75ec6dae..a75e73b2 100644 --- a/test/credits/canonical_names_test.rb +++ b/test/credits/canonical_names_test.rb @@ -2038,7 +2038,15 @@ class CanonicalNamesTest < ActiveSupport::TestCase test "jean.helou\100gmail.com" do assert_contributor_names 'a3659d5', 'Jean Helou' end - + + test "Jean-Francois Labbé" do + assert_contributor_names '90d5a5c2ab', 'Jean-François Labbé' + end + + test "jean-francois labbe" do + assert_contributor_names '34916855ca', 'Jean-François Labbé' + end + test 'jeanmartin' do assert_contributor_names 'c48f744', 'Jan Schwenzien' end