From c79e7ca31e67fba6a14e4849aab140d34b249be5 Mon Sep 17 00:00:00 2001 From: spencer <swilbur@usgs.gov> Date: Fri, 17 Mar 2023 11:44:27 -0600 Subject: [PATCH] committing IRISSNCL_test.py after running lint --- test/edge_test/IRISSNCL_test.py | 34 ++++++++++++++------------------- 1 file changed, 14 insertions(+), 20 deletions(-) diff --git a/test/edge_test/IRISSNCL_test.py b/test/edge_test/IRISSNCL_test.py index b67cc6400..b1bfec0cf 100644 --- a/test/edge_test/IRISSNCL_test.py +++ b/test/edge_test/IRISSNCL_test.py @@ -107,17 +107,14 @@ def test_get_iris_channel(): def test_get_sncl(): """edge_test.IRISSNCL_test.test_get_sncl()""" - assert ( - IRISSNCL.get_sncl( - data_type="variation", - element="H", - interval="second", - station="ANMO", - network="IU", - location="40", - ) - == IRISSNCL(station="ANMO", network="IU", channel="LF1", location="40") - ) + assert IRISSNCL.get_sncl( + data_type="variation", + element="H", + interval="second", + station="ANMO", + network="IU", + location="40", + ) == IRISSNCL(station="ANMO", network="IU", channel="LF1", location="40") with pytest.raises(ValueError) as error: IRISSNCL.get_sncl( data_type="adjusted", @@ -128,15 +125,12 @@ def test_get_sncl(): location="40", ) assert error.value == "Unsupported data type: adjusted" - assert ( - IRISSNCL.get_sncl( - data_type="adjusted", - element="H", - interval="second", - station="BOU", - ) - == IRISSNCL(station="BOU", network="NT", channel="LFH", location="A0") - ) + assert IRISSNCL.get_sncl( + data_type="adjusted", + element="H", + interval="second", + station="BOU", + ) == IRISSNCL(station="BOU", network="NT", channel="LFH", location="A0") def test_interval(): -- GitLab