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
This commit is contained in:
Mel van Londen 2019-03-30 18:28:46 -05:00 committed by GitHub
commit 1ad0347479
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -83,7 +83,7 @@ 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)
@ -91,7 +91,7 @@ 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)