Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix from Color.name to Color.color_name #1751

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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 @@ -30,7 +30,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