File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
plotly/tests/test_core/test_plotly Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -51,14 +51,19 @@ def test_sign_in_with_config(self):
51
51
api_key = 'place holder'
52
52
plotly_domain = 'test domain'
53
53
plotly_streaming_domain = 'test streaming domain'
54
+ plotly_ssl_verification = False
54
55
py .sign_in (
55
56
username ,
56
57
api_key ,
57
58
plotly_domain = plotly_domain ,
58
- plotly_streaming_domain = plotly_streaming_domain
59
+ plotly_streaming_domain = plotly_streaming_domain ,
60
+ plotly_ssl_verification = plotly_ssl_verification
59
61
)
60
62
config = py .get_config ()
61
63
self .assertEqual (config ['plotly_domain' ], plotly_domain )
62
64
self .assertEqual (
63
65
config ['plotly_streaming_domain' ], plotly_streaming_domain
64
66
)
67
+ self .assertEqual (
68
+ config ['plotly_ssl_verification' ], plotly_ssl_verification
69
+ )
You can’t perform that action at this time.
0 commit comments