diff --git a/tests/p_lsof/10-test_lsof.sh b/tests/p_lsof/10-test_lsof.sh
index b4ad4a2..f6cceb0 100755
--- a/tests/p_lsof/10-test_lsof.sh
+++ b/tests/p_lsof/10-test_lsof.sh
@@ -4,13 +4,9 @@
 
 t_Log "Running $0 - testing lsof against ssh port"
 
-../p_openssh/0-install_sshd.sh
+t_InstallPackage openssh-server openssh-clients 
+t_ServiceControl sshd start
 
-sshd_status=`service sshd status | grep running`
-if ! [ "$sshd_status" ]
-then
-  service sshd start
-fi
 sshd_port_listening=`lsof -i:22 | grep LISTEN`
 if [ "$sshd_port_listening" ]
 then
diff --git a/tests/p_telnet/10-test_telnet.sh b/tests/p_telnet/10-test_telnet.sh
index 453e269..5e42684 100755
--- a/tests/p_telnet/10-test_telnet.sh
+++ b/tests/p_telnet/10-test_telnet.sh
@@ -4,13 +4,9 @@
 
 t_Log "Running $0 - testing telnet against ssh port"
 t_Log "Making sure port 22 is listening by calling ssh installer"
-../p_openssh/0-install_sshd.sh
 
-sshd_status=`service sshd status | grep running`
-if ! [ "$sshd_status" ]
-then
-  service sshd start
-fi
+t_InstallPackage openssh-server openssh-clients 
+t_ServiceControl sshd start
 
 telnet_port_22=`telnet 127.0.0.1 22 << EOH
 EOH`