From 18ee5a8c5bb2de5887a56d3a2635de9eba8982a2 Mon Sep 17 00:00:00 2001 From: Soohwan Kim Date: Thu, 8 Jul 2021 16:24:29 +0900 Subject: [PATCH] Update test file names --- tests/test_contextnet.py | 2 +- tests/test_contextnet_lstm.py | 2 +- tests/test_contextnet_transducer.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_contextnet.py b/tests/test_contextnet.py index 16b7545..c8495ef 100644 --- a/tests/test_contextnet.py +++ b/tests/test_contextnet.py @@ -11,7 +11,7 @@ logger = logging.getLogger(__name__) -class TestConformer(unittest.TestCase): +class TestContextNet(unittest.TestCase): def test_forward(self): configs = build_dummy_configs(model_configs=ContextNetConfigs(), criterion_configs=CTCLossConfigs()) diff --git a/tests/test_contextnet_lstm.py b/tests/test_contextnet_lstm.py index 0db3293..4e532ad 100644 --- a/tests/test_contextnet_lstm.py +++ b/tests/test_contextnet_lstm.py @@ -19,7 +19,7 @@ logger = logging.getLogger(__name__) -class TestConformerLSTM(unittest.TestCase): +class TestContextNetLSTM(unittest.TestCase): def test_forward(self): configs = build_dummy_configs( model_configs=ContextNetLSTMConfigs(), diff --git a/tests/test_contextnet_transducer.py b/tests/test_contextnet_transducer.py index 388b269..91a9a9a 100644 --- a/tests/test_contextnet_transducer.py +++ b/tests/test_contextnet_transducer.py @@ -16,7 +16,7 @@ logger = logging.getLogger(__name__) -class TestConformerTransducer(unittest.TestCase): +class TestContextNetTransducer(unittest.TestCase): def test_forward(self): configs = build_dummy_configs( model_configs=ContextNetTransducerConfigs(),