diff --git a/lib/faker/educator.rb b/lib/faker/educator.rb index 1c4b0bdedb..dc1f218356 100644 --- a/lib/faker/educator.rb +++ b/lib/faker/educator.rb @@ -4,7 +4,7 @@ class Educator < Base class << self def university - "#{fetch('educator.name')} #{fetch('educator.tertiary.type')}" + "#{parse('educator.name')} #{fetch('educator.tertiary.type')}" end def course @@ -12,11 +12,11 @@ def course end def secondary_school - "#{fetch('educator.name')} #{fetch('educator.secondary')}" + "#{parse('educator.name')} #{fetch('educator.secondary')}" end def campus - "#{fetch('educator.name')} Campus" + "#{parse('educator.name')} Campus" end end end