Skip to content

Commit c661b09

Browse files
authored
Update PolarizationEfficienciesWildesTest.h
1 parent 5916f5f commit c661b09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Framework/Algorithms/test/PolarizationCorrections/PolarizationEfficienciesWildesTest.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@ class PolarizationEfficienciesWildesTest : public CxxTest::TestSuite {
536536
const MatrixWorkspace_sptr outWs = alg->getProperty(outputPropertyName);
537537
TS_ASSERT(outWs != nullptr);
538538
TS_ASSERT_EQUALS(expectedNumHistograms, outWs->getNumberHistograms())
539-
for (int i = 0; i < outWs->blocksize(); i++) {
539+
for (size_t i = 0; i < outWs->blocksize(); i++) {
540540
const double yVal = outWs->dataY(0)[i];
541541
const double eVal = outWs->dataE(0)[i];
542542
TS_ASSERT_DELTA(expectedValue.first, yVal, 1e-6);

0 commit comments

Comments
 (0)