diff --git a/tests/p_systemd/15-systemctl_list_non-native-services.sh b/tests/p_systemd/15-systemctl_list_non-native-services.sh
index c9f757d..e75d4c3 100755
--- a/tests/p_systemd/15-systemctl_list_non-native-services.sh
+++ b/tests/p_systemd/15-systemctl_list_non-native-services.sh
@@ -5,8 +5,6 @@
 [ ${centos_ver} -lt 7 ] && exit
 t_Log "Running $0 - Checking if systemctl can check if a non-native service is enabled"
 
-# netconsole is used as example because it's a non native service with minimal install
-
-systemctl is-enabled netconsole.service 2> /dev/null | grep -q -E 'enabled|disabled'
+systemctl is-enabled kdump.service 2> /dev/null | grep -q -E 'enabled|disabled'
 
 t_CheckExitStatus $?