From 1d57aeea68f99622d8253bc853991ff99667ed34 Mon Sep 17 00:00:00 2001
From: kienle <kienle@passcal.nmt.edu>
Date: Fri, 30 Sep 2022 09:15:10 -0600
Subject: [PATCH] Add test stub for trim_downsample_WFChan

---
 tests/test_model/test_handling_data.py | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/tests/test_model/test_handling_data.py b/tests/test_model/test_handling_data.py
index 75864f6b9..651855b42 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))
-- 
GitLab