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 . 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):