Skip to content

Commit 1ad0347

Browse files
authored
Merge pull request #604 from GitRon/bugfix/copy-paste-error-test-function-names
Replaced a copy-paste error causing one test case not to run
2 parents ea2cd98 + d5d0c51 commit 1ad0347

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

graphene_django/tests/test_converter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,15 +83,15 @@ def test_should_image_convert_string():
8383
assert_conversion(models.ImageField, graphene.String)
8484

8585

86-
def test_should_url_convert_string():
86+
def test_should_file_path_field_convert_string():
8787
assert_conversion(models.FilePathField, graphene.String)
8888

8989

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

9393

94-
def test_should_auto_convert_id():
94+
def test_should_uuid_convert_id():
9595
assert_conversion(models.UUIDField, graphene.UUID)
9696

9797

0 commit comments

Comments
 (0)