Index: trunk/doc/pslib/eoc_testing.txt
===================================================================
--- trunk/doc/pslib/eoc_testing.txt	(revision 5908)
+++ trunk/doc/pslib/eoc_testing.txt	(revision 5968)
@@ -132,7 +132,11 @@
 9. Earth rotation
 
-(a) Generate the transformation:
-
-    psSphereRot *earthRot = psSphereRot_TEOtoCEO(time); // This is TEO->CEO
+(a) Get the tidal correction:
+
+    psEarthPole *tidalCorr = psEOC_PolarTideCorr(time);
+
+(b) Generate the transformation:
+
+    psSphereRot *earthRot = psSphereRot_TEOtoCEO(time, tidalCorr); // This is TEO->CEO
 
 Check that the rotation quaternion of earthRot is:
@@ -145,5 +149,5 @@
 Within psSphereRot_TEOtoCEO, the Earth rotation angle should be 428251.4641536639 degrees
 
-(b) Apply the rotation to the position:
+(c) Apply the rotation to the position:
 
     psSphereRot *earthRotInv = psSphereRotInvert(earthRot); // This is CEO->TEO
@@ -167,4 +171,9 @@
     earthPM->y += nutationCorr->y;
     earthPM->s += nutationCorr->s;
+
+Add the tidal correction:
+
+    earthPM->x += tidalCorr->x;
+    earthPM->y += tidalCorr->y;
 
 Check that:
