55d5130cdac569a2643d4638f816723237a8f1c4,tests/unit/bokeh/io/test_export.py,,test_layout_html_on_parent_first,#,195

Before Change


    p = Plot(x_range=Range1d(), y_range=Range1d())

    layout = row(p)
    bie.get_layout_html(layout)

    bie.get_layout_html(p, height=100, width=100)

//-----------------------------------------------------------------------------

After Change


def test_layout_html_on_parent_first() -> None:
    p = Plot(x_range=Range1d(), y_range=Range1d())

    with silenced(MISSING_RENDERERS):
        layout = row(p)
        bie.get_layout_html(layout)

    with silenced(MISSING_RENDERERS):
        bie.get_layout_html(p, height=100, width=100)

//-----------------------------------------------------------------------------
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 4

Instances


Project Name: bokeh/bokeh
Commit Name: 55d5130cdac569a2643d4638f816723237a8f1c4
Time: 2020-02-04
Author: mattpap@gmail.com
File Name: tests/unit/bokeh/io/test_export.py
Class Name:
Method Name: test_layout_html_on_parent_first


Project Name: bokeh/bokeh
Commit Name: 55d5130cdac569a2643d4638f816723237a8f1c4
Time: 2020-02-04
Author: mattpap@gmail.com
File Name: tests/unit/bokeh/io/test_export.py
Class Name:
Method Name: test_layout_html_on_child_first


Project Name: bokeh/bokeh
Commit Name: 55d5130cdac569a2643d4638f816723237a8f1c4
Time: 2020-02-04
Author: mattpap@gmail.com
File Name: tests/unit/bokeh/io/test_export.py
Class Name:
Method Name: test_get_layout_html_resets_plot_dims