Skip to content

Commit 95fdc0b

Browse files
committed
fix lint
1 parent 00ec445 commit 95fdc0b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/test_auth.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ def test_initialize(self):
5252
def test_initialize_tuple(self):
5353
with requests_mock.Mocker() as m:
5454
m.post('http://mock-instance/login',
55-
additional_matcher=lambda request: request.text == json.dumps({"email": "[email protected]", "password": "secret123"}),
55+
additional_matcher=lambda request:
56+
request.text == json.dumps({"email": "[email protected]", "password": "secret123"}),
5657
json={
5758
"id": "e327d9c3-a4f3-4bd7-a5e1-30b26cae8064",
5859
"user": {
@@ -72,7 +73,8 @@ def test_initialize_tuple(self):
7273
def test_initialize_env(self):
7374
with requests_mock.Mocker() as m:
7475
m.post('http://mock-instance/login',
75-
additional_matcher=lambda request: request.text == json.dumps({"email": "[email protected]", "password": "secret123"}),
76+
additional_matcher=lambda request:
77+
request.text == json.dumps({"email": "[email protected]", "password": "secret123"}),
7678
json={
7779
"id": "e327d9c3-a4f3-4bd7-a5e1-30b26cae8064",
7880
"user": {

0 commit comments

Comments
 (0)