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 866f5c9 commit 2142397Copy full SHA for 2142397
plotly/tests/test_optional/test_figure_factory.py
@@ -1348,8 +1348,14 @@ def test_df_dataframe_all_args(self):
1348
self.assertEqual(test_gantt_chart['data'][1],
1349
exp_gantt_chart['data'][1])
1350
1351
- self.assert_dict_equal(test_gantt_chart['layout'],
1352
- exp_gantt_chart['layout'])
+ self.assert_dict_equal(test_gantt_chart['layout']['shapes'][0],
+ exp_gantt_chart['layout']['shapes'][0])
1353
+
1354
+ self.assert_dict_equal(test_gantt_chart['layout']['shapes'][1],
1355
+ exp_gantt_chart['layout']['shapes'][1])
1356
1357
+# self.assert_dict_equal(test_gantt_chart['layout'],
1358
+# exp_gantt_chart['layout'])
1359
1360
1361
class TestViolin(NumpyTestUtilsMixin, TestCase):
0 commit comments