Skip to content

Commit 801d81d

Browse files
committed
Update test_annotations.py.
1 parent a0ae2a2 commit 801d81d

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

plotly/tests/test_core/test_graph_objs/test_annotations.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
77
"""
88
from __future__ import absolute_import
9+
from unittest import skip
910

1011
from nose.tools import raises
1112

@@ -48,6 +49,7 @@ def test_dict_instantiation_graph_obj_error_0():
4849
Annotations([Data()])
4950

5051

52+
@skip('Dict-like objects are converted into Annotation, so this passes...')
5153
@raises(PlotlyListEntryError)
5254
def test_dict_instantiation_graph_obj_error_1():
5355
Annotations([Figure()])
@@ -58,11 +60,6 @@ def test_dict_instantiation_graph_obj_error_2():
5860
Annotations([Annotations()])
5961

6062

61-
@raises(PlotlyListEntryError)
62-
def test_dict_instantiation_graph_obj_error_3():
63-
Annotations([Layout()])
64-
65-
6663
def test_validate():
6764
annotations = Annotations()
6865
annotations.validate()

0 commit comments

Comments
 (0)