diff --git a/Framework/Algorithms/test/PDCalibrationTest.h b/Framework/Algorithms/test/PDCalibrationTest.h
index 73ce2e265f385584f9e628b4af114991e6d68abe..dccc20fcc1cc549336bf54b7bd98ffa730434c8f 100644
--- a/Framework/Algorithms/test/PDCalibrationTest.h
+++ b/Framework/Algorithms/test/PDCalibrationTest.h
@@ -158,6 +158,14 @@ public:
     // 0 is keep
     TS_ASSERT_EQUALS(mask->y(WKSPINDEX_155)[0], 0);
     TS_ASSERT_EQUALS(mask->y(WKSPINDEX_195)[0], 0);
+
+    ITableWorkspace_sptr peaksTable =
+        AnalysisDataService::Instance().retrieveWS<ITableWorkspace>(
+            "diag_fitparam");
+    for (size_t i = 0; i < peaksTable->rowCount(); ++i) {
+      std::cout << "row[" << i << "] ";
+      TS_ASSERT_LESS_THAN(peaksTable->cell<double>(i, 7), 100.); // chisq
+    }
   }
 
   void test_exec_difc_tzero() {