File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -228,7 +228,8 @@ def test_events(self):
228
228
'GET' ,
229
229
url_prefix + 'events' ,
230
230
params = {'since' : None , 'until' : None , 'filters' : None },
231
- stream = True
231
+ stream = True ,
232
+ timeout = DEFAULT_TIMEOUT_SECONDS
232
233
)
233
234
234
235
def test_events_with_since_until (self ):
@@ -247,7 +248,8 @@ def test_events_with_since_until(self):
247
248
'until' : ts + 10 ,
248
249
'filters' : None
249
250
},
250
- stream = True
251
+ stream = True ,
252
+ timeout = DEFAULT_TIMEOUT_SECONDS
251
253
)
252
254
253
255
def test_events_with_filters (self ):
@@ -265,7 +267,8 @@ def test_events_with_filters(self):
265
267
'until' : None ,
266
268
'filters' : expected_filters
267
269
},
268
- stream = True
270
+ stream = True ,
271
+ timeout = DEFAULT_TIMEOUT_SECONDS
269
272
)
270
273
271
274
def _socket_path_for_client_session (self , client ):
You can’t perform that action at this time.
0 commit comments