Skip to content

Replaced a copy-paste error causing one test case not to run #604

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

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions graphene_django/tests/test_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,15 +83,15 @@ def test_should_image_convert_string():
assert_conversion(models.ImageField, graphene.String)


def test_should_url_convert_string():
def test_should_file_path_field_convert_string():
assert_conversion(models.FilePathField, graphene.String)


def test_should_auto_convert_id():
assert_conversion(models.AutoField, graphene.ID, primary_key=True)


def test_should_auto_convert_id():
def test_should_uuid_convert_id():
assert_conversion(models.UUIDField, graphene.UUID)


Expand Down