Skip to content

Commit dfce42e

Browse files
authored
Update test_directv.py
1 parent b30d013 commit dfce42e

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

tests/test_directv.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,7 @@ async def test_authenticated_request(aresponses):
6363
async def test_text_request(aresponses):
6464
"""Test non JSON response is handled correctly."""
6565
aresponses.add(
66-
MATCH_HOST,
67-
"/",
68-
"GET",
69-
aresponses.Response(status=200, text="OK"),
66+
MATCH_HOST, "/", "GET", aresponses.Response(status=200, text="OK"),
7067
)
7168
async with ClientSession() as session:
7269
dtv = DIRECTV(HOST, session=session)

0 commit comments

Comments
 (0)