Skip to content

Commit

Permalink
Fix pipeline tests now that map is a pipeline step
Browse files Browse the repository at this point in the history
  • Loading branch information
jonmmease committed Sep 18, 2019
1 parent 7ea2ba5 commit 25d7674
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions holoviews/tests/core/testdatasetproperty.py
Original file line number Diff line number Diff line change
Expand Up @@ -709,13 +709,6 @@ def test_rasterize_curve(self):
# Check dataset
self.assertEqual(img.dataset, self.ds)

# Check pipeline
pipeline = img.pipeline
self.assertEqual(len(pipeline), 3)
self.assertIs(pipeline[0][0], Dataset)
self.assertIs(pipeline[1][0], Curve)
self.assertIsInstance(pipeline[2][0], rasterize)

# Execute pipeline
self.assertEqual(img.execute_pipeline(), img)
self.assertEqual(img.execute_pipeline(self.ds2), img2)
Expand All @@ -732,14 +725,6 @@ def test_datashade_curve(self):
# Check dataset
self.assertEqual(rgb.dataset, self.ds)

# Check pipeline
pipeline = rgb.pipeline
self.assertEqual(len(pipeline), 4)
self.assertIs(pipeline[0][0], Dataset)
self.assertIs(pipeline[1][0], Curve)
self.assertIsInstance(pipeline[2][0], datashade)
self.assertIsInstance(pipeline[3][0], dynspread)

# Execute pipeline
self.assertEqual(rgb.execute_pipeline(), rgb)
self.assertEqual(rgb.execute_pipeline(self.ds2), rgb2)
Expand Down

0 comments on commit 25d7674

Please sign in to comment.