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):
5151 api_key = 'place holder'
5252 plotly_domain = 'test domain'
5353 plotly_streaming_domain = 'test streaming domain'
54+ plotly_ssl_verification = False
5455 py .sign_in (
5556 username ,
5657 api_key ,
5758 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
5961 )
6062 config = py .get_config ()
6163 self .assertEqual (config ['plotly_domain' ], plotly_domain )
6264 self .assertEqual (
6365 config ['plotly_streaming_domain' ], plotly_streaming_domain
6466 )
67+ self .assertEqual (
68+ config ['plotly_ssl_verification' ], plotly_ssl_verification
69+ )
You can’t perform that action at this time.
0 commit comments