diff --git a/tests/test_model/test_handling_data.py b/tests/test_model/test_handling_data.py
index 75864f6b9c68014ec2bfca01ec0c11ee29dbe5be..651855b42c3d072fb063ff4498f718bf4195f32e 100644
--- a/tests/test_model/test_handling_data.py
+++ b/tests/test_model/test_handling_data.py
@@ -37,6 +37,7 @@ from sohstationviewer.model.handling_data import (
     trim_downsample_SOHChan
 )
 from sohstationviewer.model.reftek.from_rt2ms.core import Reftek130
+from sohstationviewer.conf import constants as consts
 
 TEST_DATA_DIR = Path(__file__).parent.parent.joinpath('test_data')
 
@@ -971,3 +972,11 @@ class TestTrimDownsampleSohChan(TestCase):
     def test_reftek(self):
         self.fail()
 
+
+class TestTrimDownsampleWfChan(TestCase):
+    def setUp(self) -> None:
+        pass
+
+    @expectedFailure
+    def test(self):
+        raise NotImplementedError(type(self))