diff --git a/web/plugins/wato/checkpoint_asg_tests.py b/web/plugins/wato/checkpoint_asg_tests.py
deleted file mode 100644
index c07ab0c293f9500d023bc1e524cd28c4a17d82ac..0000000000000000000000000000000000000000
--- a/web/plugins/wato/checkpoint_asg_tests.py
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/usr/bin/python
-# -*- encoding: utf-8; py-indent-offset: 4 -*-
-#
-#
-register_check_parameters(
-    subgroup_applications,
-    'checkpoint_asg_tests',
-    _('Check Point ASG tests'),
-    Dictionary(
-        #  help=_(''),
-        elements=[
-            ('asg_tests_ignore',
-             ListOfStrings(
-                 title=_('Index list of ASG tests to ignore'),
-                 orientation='horizontal',
-                 allow_empty=False,
-                 valuespec=Integer(minvalue=1, maxvalue=99, allow_empty=False),
-                 help=_('there will be no warning/critical if this tests are not "Passed"'),
-             )
-             ),
-            ('asg_tests_warning',
-             ListOfStrings(
-                 title=_('Set monitoring state to warining if ASG test state is "Failed"'),
-                 orientation='horizontal',
-                 allow_empty=False,
-                 valuespec=Integer(minvalue=1, maxvalue=99, allow_empty=False),
-                 #help=_('there will be no warning/critical if this tests are not "Passed"'),
-             )
-             ),
-        ],
-    ),
-    None,
-    match_type='dict',
-)