Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
Signed-off-by: lilithgrigoryan <[email protected]>
  • Loading branch information
lilithgrigoryan committed Aug 5, 2024
1 parent 5efcd52 commit d56ee84
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/test_normalize_text.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ def test_normalize_text(class_kwargs, test_input, expected_output):
processor = NormalizeText(**class_kwargs, output_manifest_file=None)
processor.prepare()

print(test_input)
output = processor.process_dataset_entry(test_input)[0].data

assert output == expected_output
Expand Down Expand Up @@ -111,7 +110,6 @@ def test_inverse_normalize_text(class_kwargs, test_input, expected_output):
processor = InverseNormalizeText(**class_kwargs, output_manifest_file=None)
processor.prepare()

print(test_input)
output = processor.process_dataset_entry(test_input)[0].data

assert output == expected_output

0 comments on commit d56ee84

Please sign in to comment.