Skip to content

Commit 18ee5a8

Browse files
Soohwan KimSoohwan Kim
authored andcommitted
Update test file names
1 parent fa22f70 commit 18ee5a8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tests/test_contextnet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
logger = logging.getLogger(__name__)
1212

1313

14-
class TestConformer(unittest.TestCase):
14+
class TestContextNet(unittest.TestCase):
1515
def test_forward(self):
1616
configs = build_dummy_configs(model_configs=ContextNetConfigs(), criterion_configs=CTCLossConfigs())
1717

tests/test_contextnet_lstm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
logger = logging.getLogger(__name__)
2020

2121

22-
class TestConformerLSTM(unittest.TestCase):
22+
class TestContextNetLSTM(unittest.TestCase):
2323
def test_forward(self):
2424
configs = build_dummy_configs(
2525
model_configs=ContextNetLSTMConfigs(),

tests/test_contextnet_transducer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
logger = logging.getLogger(__name__)
1717

1818

19-
class TestConformerTransducer(unittest.TestCase):
19+
class TestContextNetTransducer(unittest.TestCase):
2020
def test_forward(self):
2121
configs = build_dummy_configs(
2222
model_configs=ContextNetTransducerConfigs(),

0 commit comments

Comments
 (0)