Skip to content

Commit 20f2b82

Browse files
committed
updated the test for circle to pass
1 parent dcaacfd commit 20f2b82

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

plotly/tests/test_core/test_plotly/test_plot.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,8 @@ def test_plot_url_given_sharing_key(self):
191191
'fileopt': 'overwrite',
192192
'world_readable': False,
193193
'sharing': 'secret'}
194-
plot_url = py._send_to_plotly(fig, **kwargs)['url']
194+
response = py._send_to_plotly(fig, **kwargs)
195+
plot_url = response['url']
195196

196197
self.assertTrue('share_key=' in plot_url)
197198

0 commit comments

Comments
 (0)