Typo fixes

This commit is contained in:
lilac-supernova-2 2023-08-26 02:31:00 -04:00 committed by Lilac Supernova #2
parent cd4dfa83f4
commit f027834827
No known key found for this signature in database
GPG Key ID: 12DBACF7E468C5AE

View File

@ -789,7 +789,7 @@ def test_order_by():
query = """ query = """
query NodeFilteringQuery { query NodeFilteringQuery {
allReporters(orderBy: "-firtsnaMe") { allReporters(orderBy: "-firstname") {
edges { edges {
node { node {
firstName firstName
@ -802,7 +802,7 @@ def test_order_by():
assert result.errors assert result.errors
def test_order_by_is_perserved(): def test_order_by_is_preserved():
class ReporterType(DjangoObjectType): class ReporterType(DjangoObjectType):
class Meta: class Meta:
model = Reporter model = Reporter