Skip to content

Commit 4f2b278

Browse files
committed
black reformat
1 parent 7dd8305 commit 4f2b278

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

graphene/types/tests/test_datetime.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,7 @@ def test_date_query_variable():
101101
isoformat = now.isoformat()
102102

103103
result = schema.execute(
104-
"""query Test($date: Date){ date(in: $date) }""",
105-
variables={"date": isoformat},
104+
"""query Test($date: Date){ date(in: $date) }""", variables={"date": isoformat}
106105
)
107106
assert not result.errors
108107
assert result.data == {"date": isoformat}
@@ -114,8 +113,7 @@ def test_time_query_variable():
114113
isoformat = time.isoformat()
115114

116115
result = schema.execute(
117-
"""query Test($time: Time){ time(at: $time) }""",
118-
variables={"time": isoformat},
116+
"""query Test($time: Time){ time(at: $time) }""", variables={"time": isoformat}
119117
)
120118
assert not result.errors
121119
assert result.data == {"time": isoformat}

0 commit comments

Comments
 (0)