We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f009eb8 commit bbb3cecCopy full SHA for bbb3cec
plotly/tests/test_core/test_plotly/test_plot.py
@@ -183,7 +183,7 @@ def test_plot_url_response_given_sharing_key(self):
183
plot_url = py.plot(self.simple_figure, **kwargs)
184
# shareplot basically always gives a 200 if even if permission denied
185
# embedplot returns an actual 404
186
- embed_url = plot_url.split('?')[0] + '.embed' + plot_url.split('?')[1]
+ embed_url = plot_url.split('?')[0] + '.embed?' + plot_url.split('?')[1]
187
response = requests.get(embed_url)
188
189
self.assertEqual(response.status_code, 200)
0 commit comments