Skip to content

Commit

Permalink
Merge pull request #100 from arup-group/vehicle_checks
Browse files Browse the repository at this point in the history
Minor changes to the fixture names that weren't commited earlier
  • Loading branch information
ana-kop authored Nov 17, 2021
2 parents 2049a8d + cbb6b54 commit fbf4a3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_utils_schedule_operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def correct_schedule():
])


def test_generate_validation_report_with_correct_schedule(correct_schedule):
def test_generate_validation_report_for_correct_schedule(correct_schedule):
correct_report = {
'schedule_level': {'is_valid_schedule': True, 'invalid_stages': [], 'has_valid_services': True,
'invalid_services': []},
Expand All @@ -55,7 +55,7 @@ def test_generate_validation_report_with_correct_schedule(correct_schedule):
assert_semantically_equal(report, correct_report)


def test_generate_validation_report_with_incorrect_schedule(test_schedule):
def test_generate_validation_report_for_incorrect_schedule(test_schedule):
correct_report = {
'schedule_level': {'is_valid_schedule': False, 'invalid_stages': ['not_has_valid_services'],
'has_valid_services': False, 'invalid_services': ['service']},
Expand Down

0 comments on commit fbf4a3a

Please sign in to comment.