diff --git a/Code/Mantid/Framework/DataHandling/test/LoadEmptyInstrumentTest.h b/Code/Mantid/Framework/DataHandling/test/LoadEmptyInstrumentTest.h
index 77bc52fce16d40cef4540d69680a59d2a07c7bd8..13e629aec36f9766736629545ad14ffae905d444 100644
--- a/Code/Mantid/Framework/DataHandling/test/LoadEmptyInstrumentTest.h
+++ b/Code/Mantid/Framework/DataHandling/test/LoadEmptyInstrumentTest.h
@@ -537,11 +537,11 @@ public:
     // get detector corresponding to workspace index 0
     IDetector_sptr det = ws->getDetector(69);  
 
-    TS_ASSERT_EQUALS( det->getID(), 78);
-    TS_ASSERT_EQUALS( det->getName(), "Detector #70");
+    TS_ASSERT_EQUALS( det->getID(), 77);
+    TS_ASSERT_EQUALS( det->getName(), "Detector #69");
 
     Parameter_sptr param = paramMap.get(&(*det), "Efixed");
-    TS_ASSERT_DELTA( param->value<double>(), 4.000, 0.0001);
+    TS_ASSERT_DELTA( param->value<double>(), 4.04389, 0.0001);
 
     AnalysisDataService::Instance().remove(wsName);
 
@@ -564,11 +564,11 @@ public:
 
     det = ws->getDetector(69);  
 
-    TS_ASSERT_EQUALS( det->getID(), 78);
-    TS_ASSERT_EQUALS( det->getName(), "Detector #70");
+    TS_ASSERT_EQUALS( det->getID(), 77);
+    TS_ASSERT_EQUALS( det->getName(), "Detector #69");
 
     param = paramMap2.get(&(*det), "Efixed");
-    TS_ASSERT_DELTA( param->value<double>(), 4.000, 0.0001);
+    TS_ASSERT_DELTA( param->value<double>(), 4.04389, 0.0001);
 
     AnalysisDataService::Instance().remove(wsName);
   }
diff --git a/Code/Mantid/Framework/DataHandling/test/LoadRaw3Test.h b/Code/Mantid/Framework/DataHandling/test/LoadRaw3Test.h
index 0f48fd0cef1582db4acb5203d00d4f65730cd058..0521e6e930e1efcb5431b03569d016d0e6b05bd2 100644
--- a/Code/Mantid/Framework/DataHandling/test/LoadRaw3Test.h
+++ b/Code/Mantid/Framework/DataHandling/test/LoadRaw3Test.h
@@ -414,7 +414,7 @@ public:
     TS_ASSERT_EQUALS( ptrDet->getID(), 60);
 
     Mantid::Geometry::ParameterMap& pmap = output2D->instrumentParameters();
-    TS_ASSERT_EQUALS( static_cast<int>(pmap.size()), 146);
+    TS_ASSERT_EQUALS( static_cast<int>(pmap.size()), 147);
 	AnalysisDataService::Instance().remove("parameterIDF");
   }