diff --git a/indra/llmath/tests/v3dmath_test.cpp b/indra/llmath/tests/v3dmath_test.cpp
index 20b26faa12b0d08fd6c83d353b424752d5ab460d..930ea52b7fe5c255c4506ec03dba7679b01c42a0 100644
--- a/indra/llmath/tests/v3dmath_test.cpp
+++ b/indra/llmath/tests/v3dmath_test.cpp
@@ -504,9 +504,6 @@ namespace tut
 	template<> template<>
 	void v3dmath_object::test<24>()
 	{
-#if LL_WINDOWS && _MSC_VER < 1400
-		skip("This fails on VS2003!");
-#else
 		F64 x = 10., y = 20., z = -15.;
 		F64 angle1, angle2;
 		LLVector3d vec3Da(x,y,z), vec3Db(x,y,z);
@@ -521,6 +518,5 @@ namespace tut
 		F64 angle = vec3Db*vec3Da;
 		angle = acos(angle);
 		ensure("2:angle_between: Fail ", (angle == angle2));
-#endif
 	}
 }