@@ -448,8 +448,8 @@ def test_node_dot_str0(dot_str_pipeline):
448448def test_node_dot_str1 (dot_str_pipeline , monkeypatch ):
449449 style = get_installed_plotter ().style
450450 monkeypatch .setattr (style , "py_item_url_format" , "abc#%s" )
451- monkeypatch .setattr (style , "op_link_target" , { "target" : " _self"} )
452- monkeypatch .setattr (style , "fn_link_target" , { "target" : " bad"} )
451+ monkeypatch .setattr (style , "op_link_target" , " _self" )
452+ monkeypatch .setattr (style , "fn_link_target" , " bad" )
453453
454454 dot_str = str (dot_str_pipeline .plot ())
455455 print (dot_str )
@@ -461,16 +461,16 @@ def test_node_dot_str1(dot_str_pipeline, monkeypatch):
461461 <edge> [shape=rect];
462462 <digraph: strict> [shape=rect];
463463 <node> [label=<<TABLE CELLBORDER="0" CELLSPACING="0" STYLE="rounded"
464- ><TR><TD BORDER="1" SIDES="b" TOOLTIP="FunctionalOperation(name='node', needs=['edge', 'digraph: strict'], provides=['<graph>'], fn='add')" HREF="abc#{'dot_path': '_operator.add', 'posix_path': '_operator/add'}" TARGET="{'target': ' bad'} "
464+ ><TR><TD BORDER="1" SIDES="b" TOOLTIP="FunctionalOperation(name='node', needs=['edge', 'digraph: strict'], provides=['<graph>'], fn='add')" HREF="abc#{'dot_path': '_operator.add', 'posix_path': '_operator/add'}" TARGET="bad"
465465 ><B>OP:</B> <I>node</I></TD></TR
466- ><TR><TD TOOLTIP="<built-in function add>" HREF="abc#{'dot_path': '_operator.add', 'posix_path': '_operator/add'}" TARGET="{'target': ' bad'} "
466+ ><TR><TD TOOLTIP="<built-in function add>" HREF="abc#{'dot_path': '_operator.add', 'posix_path': '_operator/add'}" TARGET="bad"
467467 ><B>FN:</B> _operator.add</TD></TR>
468468 </TABLE>>, shape=plain, tooltip=<node>];
469469 <<graph>> [shape=rect];
470470 <cu:sto:m> [label=<<TABLE CELLBORDER="0" CELLSPACING="0" STYLE="rounded"
471- ><TR><TD BORDER="1" SIDES="b" TOOLTIP="FunctionalOperation(name='cu:sto:m', needs=['edge', 'digraph: strict'], provides=['<graph>'], fn='func')" HREF="abc#{'dot_path': 'test.test_plot.func', 'posix_path': 'test/test_plot/func'}" TARGET="{'target': ' bad'} "
471+ ><TR><TD BORDER="1" SIDES="b" TOOLTIP="FunctionalOperation(name='cu:sto:m', needs=['edge', 'digraph: strict'], provides=['<graph>'], fn='func')" HREF="abc#{'dot_path': 'test.test_plot.func', 'posix_path': 'test/test_plot/func'}" TARGET="bad"
472472 ><B>OP:</B> <I>cu:sto:m</I></TD></TR
473- ><TR><TD TOOLTIP="def func(): pass" HREF="abc#{'dot_path': 'test.test_plot.func', 'posix_path': 'test/test_plot/func'}" TARGET="{'target': ' bad'} "
473+ ><TR><TD TOOLTIP="def func(): pass" HREF="abc#{'dot_path': 'test.test_plot.func', 'posix_path': 'test/test_plot/func'}" TARGET="bad"
474474 ><B>FN:</B> test.test_plot.func</TD></TR>
475475 </TABLE>>, shape=plain, tooltip=<cu:sto:m>];
476476 <edge> -> <node>;
0 commit comments