Skip to content

Commit

Permalink
RE 7091 bias data in splatterplot
Browse files Browse the repository at this point in the history
Changing the expected number of points, after updating the
strategy for selecting points to plot in the splatter plot.

refs #7091
  • Loading branch information
DennisMikkelson committed May 28, 2013
1 parent 335143a commit 43f31c1
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Code/Mantid/Vates/VatesAPI/test/vtkSplatterPlotFactoryTest.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,16 @@ class vtkSplatterPlotFactoryTest : public CxxTest::TestSuite

TS_ASSERT_THROWS_NOTHING(product = factory.create(progressUpdate));

/* original sizes for splatter plot test, before 5/28/2013
const size_t expected_n_points = 1000;
const size_t expected_n_cells = 999;
*/

// New sizes for splatter plot test, after changing the way the points
// are selected, 5/28/2013
const size_t expected_n_points = 50;
const size_t expected_n_cells = 50;

const size_t expected_n_signals = expected_n_cells;

TSM_ASSERT_EQUALS("Wrong number of points", expected_n_points, product->GetNumberOfPoints());
Expand Down

0 comments on commit 43f31c1

Please sign in to comment.