Skip to content

Commit f48e075

Browse files
style: fix pyink style warnings
1 parent 14fbf85 commit f48e075

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unittests/sessions/test_session_service.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ async def test_session_state(service_type):
117117
app_name = 'my_app'
118118
user_id_1 = 'user1'
119119
user_id_2 = 'user2'
120-
user_id_malicious = "malicious"
120+
user_id_malicious = 'malicious'
121121
session_id_11 = 'session11'
122122
session_id_12 = 'session12'
123123
session_id_2 = 'session2'
@@ -196,7 +196,7 @@ async def test_session_state(service_type):
196196
session_mismatch = await session_service.get_session(
197197
app_name=app_name, user_id=user_id_malicious, session_id=session_id_11
198198
)
199-
199+
200200
assert len(session_mismatch.events) == 0
201201

202202

0 commit comments

Comments
 (0)