Fix testing versions.

There is a special version of the testing methods for use in the control
environment that handles execeptions that can be thrown there. There are
tests to make sure you are using the correct version of the testing
framework, but it was broken until the last commit. Now that it's fixed,
here are two places where the wrong testing method was used.
This commit is contained in:
Kenneth Moreland 2014-06-11 10:45:36 -06:00
parent ed9cf46a17
commit 2bd9632a36
2 changed files with 3 additions and 3 deletions

@ -75,5 +75,5 @@ void TestLists()
int UnitTestContainerListTag(int, char *[])
{
return vtkm::testing::Testing::Run(TestLists);
return vtkm::cont::testing::Testing::Run(TestLists);
}

@ -22,7 +22,7 @@
#include <vtkm/cont/Timer.h>
#include <vtkm/testing/Testing.h>
#include <vtkm/cont/testing/Testing.h>
#include <sstream>
#include <string>
@ -515,5 +515,5 @@ void TestFunctionInterface()
int UnitTestFunctionInterface(int, char *[])
{
return vtkm::testing::Testing::Run(TestFunctionInterface);
return vtkm::cont::testing::Testing::Run(TestFunctionInterface);
}