Skip to content

Commit

Permalink
Further test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed May 23, 2021
1 parent f7cfca8 commit b678d7b
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions holoviews/tests/plotting/bokeh/testcallbacks.py
Original file line number Diff line number Diff line change
Expand Up @@ -340,9 +340,6 @@ def test_point_draw_shared_datasource_callback(self):
point_plot = plot.subplots[(0, 0)].subplots['main']
table_plot = plot.subplots[(0, 1)].subplots['main']
self.assertIs(point_plot.handles['source'], table_plot.handles['source'])
self.assertIn(plot.id, point_plot.callbacks[0].callbacks[0].code)
self.assertNotIn('PLACEHOLDER_PLOT_ID', point_plot.callbacks[0].callbacks[0].code)



class TestServerCallbacks(CallbackTestCase):
Expand Down Expand Up @@ -510,6 +507,3 @@ def test_callback_on_table_is_attached(self):
self.assertEqual(len(plot.callbacks), 1)
self.assertIsInstance(plot.callbacks[0], Selection1DCallback)
self.assertIn(selection, plot.callbacks[0].streams)
callbacks = plot.handles['selected'].js_property_callbacks
self.assertIn('change:indices', callbacks)
self.assertIn(plot.id, callbacks['change:indices'][0].code)

0 comments on commit b678d7b

Please sign in to comment.