From cc00bce0eb03786ed71e9b5d2d46c032418b36f4 Mon Sep 17 00:00:00 2001 From: Jan Timpe Date: Tue, 14 Nov 2023 11:26:07 -0500 Subject: [PATCH] replace removed text --- tdrs-backend/tdpservice/parsers/test/test_util.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tdrs-backend/tdpservice/parsers/test/test_util.py b/tdrs-backend/tdpservice/parsers/test/test_util.py index 3f030daea..d7b2afc0e 100644 --- a/tdrs-backend/tdpservice/parsers/test/test_util.py +++ b/tdrs-backend/tdpservice/parsers/test/test_util.py @@ -51,7 +51,7 @@ def test_run_preparsing_validators_returns_invalid_and_errors(): def test_parse_line_parses_line_from_schema_to_dict(): - """Test that parse_line parses a string into a dict given start and end indices for all """ + """Test that parse_line parses a string into a dict given start and end indices for all fields.""" line = '12345001' schema = RowSchema( model=dict, @@ -74,7 +74,7 @@ def test_parse_line_parses_line_from_schema_to_dict(): def test_parse_line_parses_line_from_schema_to_object(): - """Test that parse_line parses a string into an object given start and end indices for all """ + """Test that parse_line parses a string into an object given start and end indices for all fields.""" class TestModel: first = None second = None