File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ def inner(**kwargs):
24
24
@pytest .mark .forked
25
25
@pytest .mark .parametrize ("debug" , (True , False ))
26
26
@pytest .mark .parametrize ("client_flush_method" , ["close" , "flush" ])
27
- @pytest .mark .parametrize ("pickle " , (True , False ))
27
+ @pytest .mark .parametrize ("use_pickle " , (True , False ))
28
28
def test_transport_works (
29
29
httpserver ,
30
30
request ,
@@ -33,14 +33,14 @@ def test_transport_works(
33
33
debug ,
34
34
make_client ,
35
35
client_flush_method ,
36
- pickle ,
36
+ use_pickle ,
37
37
maybe_monkeypatched_threading ,
38
38
):
39
39
httpserver .serve_content ("ok" , 200 )
40
40
caplog .set_level (logging .DEBUG )
41
41
client = make_client (debug = debug )
42
42
43
- if pickle :
43
+ if use_pickle :
44
44
client = pickle .loads (pickle .dumps (client ))
45
45
46
46
Hub .current .bind_client (client )
You can’t perform that action at this time.
0 commit comments