From 0b211ede4350abf3b99c1c7f2d9eb4f15ce34e84 Mon Sep 17 00:00:00 2001 From: Wenduo Zhou Date: Fri, 20 Jun 2014 17:28:29 -0400 Subject: [PATCH] Removed extra output. Refs #9573. --- Code/Mantid/Framework/Algorithms/test/SortEventsTest.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Code/Mantid/Framework/Algorithms/test/SortEventsTest.h b/Code/Mantid/Framework/Algorithms/test/SortEventsTest.h index 20ef5b2e35e9..c6ec7179d6f7 100644 --- a/Code/Mantid/Framework/Algorithms/test/SortEventsTest.h +++ b/Code/Mantid/Framework/Algorithms/test/SortEventsTest.h @@ -9,8 +9,6 @@ #include "MantidTestHelpers/WorkspaceCreationHelper.h" #include -#include "MantidDataHandling/SaveNexusProcessed.h" - using namespace Mantid; using namespace Mantid::Kernel; using namespace Mantid::DataObjects; @@ -101,12 +99,6 @@ class SortEventsTest : public CxxTest::TestSuite EventWorkspace_sptr test_in = WorkspaceCreationHelper::CreateRandomEventWorkspace(NUMBINS, NUMPIXELS); AnalysisDataService::Instance().add(wsName, test_in); - SaveNexusProcessed save; - save.initialize(); - save.setPropertyValue("InputWorkspace", wsName); - save.setProperty("Filename", "/tmp/testeventsort.nxs"); - save.execute(); - SortEvents sort; sort.initialize(); sort.setPropertyValue("InputWorkspace",wsName);