diff --git a/tests/p_curl/curl_test.sh b/tests/p_curl/curl_test.sh
index 5f63001..1ed1d1c 100755
--- a/tests/p_curl/curl_test.sh
+++ b/tests/p_curl/curl_test.sh
@@ -5,7 +5,6 @@
 t_Log "Running $0 - curl can access http-host and retrieve index.html."
 
 CHECK_FOR="CentOS Wiki"
-SKIP_QA_HARNESS=1
 
 if [ $SKIP_QA_HARNESS ]; then
   URL="http://wiki.centos.org/"
@@ -15,6 +14,5 @@ fi
 
 t_Log "Querying ${URL}"
 curl -s ${URL} | grep -q "${CHECK_FOR}"
-ret_val=$?
-echo $ret_val
-#t_CheckExitStatus $ret_val
+
+t_CheckExitStatus $?