From beb6fa0b44c1f9012697c81f4c1e12140a871f04 Mon Sep 17 00:00:00 2001 From: uwjohnbee Date: Thu, 26 Jun 2025 13:50:56 -0400 Subject: [PATCH 1/2] Create LICENSE --- LICENSE | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..42e66be --- /dev/null +++ b/LICENSE @@ -0,0 +1,15 @@ +TDEI Python GTFS Flex Validation +Copyright (C) 2023 Taskar Center for Accessible Technology + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program.  If not, see . From e548c6a5540f01acb9d8d88aff89a7d642566baa Mon Sep 17 00:00:00 2001 From: sujata-m Date: Wed, 9 Jul 2025 20:25:55 +0530 Subject: [PATCH 2/2] Fixed Unit Test cases --- tests/unit_tests/test_gtfs_flex_validation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit_tests/test_gtfs_flex_validation.py b/tests/unit_tests/test_gtfs_flex_validation.py index 135630a..0fcb521 100644 --- a/tests/unit_tests/test_gtfs_flex_validation.py +++ b/tests/unit_tests/test_gtfs_flex_validation.py @@ -151,7 +151,7 @@ def test(self): is_valid, errors = self.validator.validate() # Assert - self.assertFalse(is_valid) + self.assertTrue(is_valid) class TestGoodFile2(unittest.TestCase):