From f10391f2f811fca92dfd28b0395183a7e550c912 Mon Sep 17 00:00:00 2001 From: Pete Peterson Date: Wed, 20 Aug 2014 17:13:00 -0400 Subject: [PATCH] Re #10137. Fixing unit test. --- .../plugins/algorithms/SANSWideAngleCorrection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Code/Mantid/Framework/PythonInterface/plugins/algorithms/SANSWideAngleCorrection.py b/Code/Mantid/Framework/PythonInterface/plugins/algorithms/SANSWideAngleCorrection.py index 526e75c9e5d4..563b0b4f3fee 100644 --- a/Code/Mantid/Framework/PythonInterface/plugins/algorithms/SANSWideAngleCorrection.py +++ b/Code/Mantid/Framework/PythonInterface/plugins/algorithms/SANSWideAngleCorrection.py @@ -18,7 +18,7 @@ def summary(self): return "Calculate the Wide Angle correction for SANS transmissions." def PyInit(self): - self.declareProperty(MatrixWorkspaceProperty("SampleData", "", direction = Direction.Input), + self.declareProperty(MatrixWorkspaceProperty("SampleData", "", direction = Direction.Input), "A workspace cropped to the detector to be reduced (the SAME as the input to [[Q1D]]); used to verify the solid angle. The workspace is not modified, just inspected.") self.declareProperty(MatrixWorkspaceProperty("TransmissionData","",direction=Direction.Input), "The transmission data calculated, referred to as T_0 in equations in discussion section")