Skip to content

Commit

Permalink
Merge pull request #70 from faker-ruby/master
Browse files Browse the repository at this point in the history
fix from Color.name to Color.color_name (faker-ruby#1751)
  • Loading branch information
sanikkenway committed Sep 26, 2019
2 parents 3468e3b + 4d62e8f commit 6ce6056
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion test/test_ar_locale.rb
Expand Up @@ -42,7 +42,7 @@ def test_ar_book_methods
end

def test_ar_color_name
assert Faker::Color.name.is_a? String
assert Faker::Color.color_name.is_a? String
end

def test_ar_commerce_methods
Expand Down
2 changes: 1 addition & 1 deletion test/test_ca_locale.rb
Expand Up @@ -12,7 +12,7 @@ def teardown
end

def test_ca_color_methods
assert Faker::Color.name.is_a? String
assert Faker::Color.color_name.is_a? String
end

def test_ca_name_methods
Expand Down
2 changes: 1 addition & 1 deletion test/test_de_locale.rb
Expand Up @@ -40,7 +40,7 @@ def test_de_chuck_norris_methods
end

def test_de_color_methods
assert Faker::Color.name.is_a? String
assert Faker::Color.color_name.is_a? String
end

def test_de_company_methods
Expand Down
2 changes: 1 addition & 1 deletion test/test_es_locale.rb
Expand Up @@ -49,7 +49,7 @@ def test_es_address_methods
end

def test_es_color_methods
assert Faker::Color.name.is_a? String
assert Faker::Color.color_name.is_a? String
end

def test_es_company_methods
Expand Down
2 changes: 1 addition & 1 deletion test/test_ja_locale.rb
Expand Up @@ -39,7 +39,7 @@ def test_ja_cat_methods
end

def test_ja_color_methods
assert Faker::Color.name.is_a? String
assert Faker::Color.color_name.is_a? String
end

def test_ja_coffee_methods
Expand Down

0 comments on commit 6ce6056

Please sign in to comment.