From e9b23331b5ca4f3055ed9ec344ddba30095930ee Mon Sep 17 00:00:00 2001 From: sujata-m Date: Fri, 16 Jan 2026 13:57:11 +0530 Subject: [PATCH 1/2] Updated package version - https://dev.azure.com/TDEI-UW/TDEI/_workitems/edit/2817 - https://dev.azure.com/TDEI-UW/TDEI/_workitems/edit/2844 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index aa22a5a..c74773a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,4 +4,4 @@ python-ms-core==0.0.23 uvicorn==0.20.0 html_testRunner==1.2.1 geopandas==0.14.4 -python-osw-validation==0.3.2 \ No newline at end of file +python-osw-validation==0.3.3 \ No newline at end of file From ad71268b8701cbabc5197facf430bd1ffc84e805 Mon Sep 17 00:00:00 2001 From: sujata-m Date: Fri, 16 Jan 2026 14:01:16 +0530 Subject: [PATCH 2/2] Updated unit test cases --- tests/unit_tests/test_validation.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/unit_tests/test_validation.py b/tests/unit_tests/test_validation.py index 19f3099..2238151 100644 --- a/tests/unit_tests/test_validation.py +++ b/tests/unit_tests/test_validation.py @@ -92,23 +92,23 @@ def test_validate_invalid_file_with_errors(self, mock_download_file, mock_clean_ expected_errors = [ { 'feature_index': 3, - 'error_message': "Additional properties are not allowed ('crossing' was unexpected)" + 'error_message': "Additional properties are not allowed ('crossing' was unexpected). If you want to carry this tag, change it to ext:crossing" }, { 'feature_index': 6, - 'error_message': "Additional properties are not allowed ('crossing' was unexpected)" + 'error_message': "Additional properties are not allowed ('crossing' was unexpected). If you want to carry this tag, change it to ext:crossing" }, { 'feature_index': 8, - 'error_message': "Additional properties are not allowed ('crossing' was unexpected)" + 'error_message': "Additional properties are not allowed ('crossing' was unexpected). If you want to carry this tag, change it to ext:crossing" }, { 'feature_index': 25, - 'error_message': "Additional properties are not allowed ('crossing' was unexpected)" + 'error_message': "Additional properties are not allowed ('crossing' was unexpected). If you want to carry this tag, change it to ext:crossing" }, { 'feature_index': 27, - 'error_message': "Additional properties are not allowed ('crossing' was unexpected)" + 'error_message': "Additional properties are not allowed ('crossing' was unexpected). If you want to carry this tag, change it to ext:crossing" } ] # Act