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 8ee5025 commit 38032c9Copy full SHA for 38032c9
plotly-package/plotly/tests/test_core/test_offline/test_offline.py
@@ -221,7 +221,7 @@ def test_including_plotlyjs_directory_html(self):
221
# plot creates plotly.min.js in the output directory
222
self.assertTrue(
223
os.path.exists(os.path.join(here, 'plotly.min.js')))
224
- with open('plotly.min.js', 'r') as f:
+ with open(os.path.join(here, 'plotly.min.js'), 'r') as f:
225
self.assertEqual(f.read(), PLOTLYJS)
226
227
def test_including_plotlyjs_directory_div(self):
0 commit comments