File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
plotly/tests/test_core/test_plotly Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -340,15 +340,15 @@ def gen_test_signin(plot_options):
340
340
def test (self ):
341
341
py .sign_in ('username' , 'key' , ** plot_options ['parent' ])
342
342
options = py ._plot_option_logic (plot_options ['child' ])
343
- for option , value in plot_options ['expected_output' ].iteritems ():
343
+ for option , value in plot_options ['expected_output' ].items ():
344
344
self .assertEqual (options [option ], value )
345
345
return test
346
346
347
347
def gen_test_config (plot_options ):
348
348
def test (self ):
349
349
tls .set_config (** plot_options ['parent' ])
350
350
options = py ._plot_option_logic (plot_options ['child' ])
351
- for option , value in plot_options ['expected_output' ].iteritems ():
351
+ for option , value in plot_options ['expected_output' ].items ():
352
352
self .assertEqual (options [option ], value )
353
353
354
354
for i , plot_options in enumerate (plot_option_sets ):
You can’t perform that action at this time.
0 commit comments