Merge topic 'contour-test-warning'

44650c2e4 Fix unused variable in contour test

Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: Louis Gombert <louis.gombert@kitware.com>
Merge-request: !3059
This commit is contained in:
Kenneth Moreland 2023-05-14 04:43:42 +00:00 committed by Kitware Robot
commit f9ddba8d5c

@ -228,7 +228,7 @@ public:
// But it should not change anything on the contour itself.
filter.SetGenerateNormals(true);
vtkm::cont::DataSet outputNormals = filter.Execute(rectilinearDataset);
coordinates = outputSingleCell.GetCoordinateSystem()
coordinates = outputNormals.GetCoordinateSystem()
.GetData()
.AsArrayHandle<vtkm::cont::ArrayHandle<vtkm::Vec3f>>();
VTKM_TEST_ASSERT(test_equal_ArrayHandles(coordinates, expectedCoordinates),