From 21e9c7578196b72331f8207a032dfc82f38221b0 Mon Sep 17 00:00:00 2001 From: scopesorting Date: Tue, 14 Nov 2023 12:07:59 +0100 Subject: [PATCH] typo. --- src/server/tests/validators/test_validation_rule_functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/tests/validators/test_validation_rule_functions.py b/src/server/tests/validators/test_validation_rule_functions.py index cdb0183..1847973 100644 --- a/src/server/tests/validators/test_validation_rule_functions.py +++ b/src/server/tests/validators/test_validation_rule_functions.py @@ -841,7 +841,7 @@ def test_validation_rule_fct_agency_and_terminal_pier_side_disagreement__agency_ df_times.loc[df_times["participant_type"]==ParticipantType.TERMINAL.value, "pier_side"] = float("nan") (code, msg) = vr.validation_rule_fct_agency_and_terminal_pier_side_disagreement(shipcall=shipcall, df_times=df_times) - assert code==StatusFlags.GREEN, f"status should be 'yellow', because the terminal's pier_side is not provided" + assert code==StatusFlags.GREEN, f"status should be 'green', because the terminal's pier_side is not provided" return