Skip to content

Commit d68f704

Browse files
committed
fix tests
1 parent c5cbfd1 commit d68f704

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

tests/integration/test_config.py

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -747,60 +747,60 @@ async def test_task_event_bad_custom_template(
747747
('initial', 'start', 'stop', 'final', True, False),
748748
(
749749
'initial', 'start', 'final', 'stop', True,
750-
"Stop cycle point '20030101T0000Z' will have no effect as it"
750+
"stop cycle point '20030101T0000Z' will have no effect as it"
751751
" is after the final cycle point '20020101T0000Z'."
752752
),
753753
(
754754
'initial', 'stop', 'start', 'final', False,
755-
"Stop cycle point '20010101T0000Z' will have no effect as it"
755+
"stop cycle point '20010101T0000Z' will have no effect as it"
756756
" is before the start cycle point '20020101T0000Z'."
757757
),
758758
(
759759
'initial', 'stop', 'final', 'start', False,
760-
"Start cycle point '20030101T0000Z' will have no effect as it"
760+
"start cycle point '20030101T0000Z' will have no effect as it"
761761
" is after the final cycle point '20020101T0000Z'."
762762
),
763763
(
764764
'initial', 'final', 'start', 'stop', True,
765-
"Stop cycle point '20030101T0000Z' will have no effect as it"
765+
"stop cycle point '20030101T0000Z' will have no effect as it"
766766
" is after the final cycle point '20010101T0000Z'."
767767
),
768768
(
769769
'initial', 'final', 'stop', 'start', True,
770-
"Stop cycle point '20020101T0000Z' will have no effect as it"
770+
"stop cycle point '20020101T0000Z' will have no effect as it"
771771
" is after the final cycle point '20010101T0000Z'."
772772
),
773773
(
774774
'start', 'initial', 'stop', 'final', False,
775-
"Start cycle point '20000101T0000Z' will have no effect as it"
775+
"start cycle point '20000101T0000Z' will have no effect as it"
776776
" is before the initial cycle point '20010101T0000Z'."
777777
),
778778
(
779779
'start', 'initial', 'final', 'stop', True,
780-
"Stop cycle point '20030101T0000Z' will have no effect as it"
780+
"stop cycle point '20030101T0000Z' will have no effect as it"
781781
" is after the final cycle point '20020101T0000Z'."
782782
),
783783
(
784784
'start', 'stop', 'initial', 'final', True,
785-
"Stop cycle point '20010101T0000Z' will have no effect as it"
785+
"stop cycle point '20010101T0000Z' will have no effect as it"
786786
" is before the initial cycle point '20020101T0000Z'."
787787
),
788788
('start', 'stop', 'final', 'initial', True, WorkflowConfigError),
789789
('start', 'final', 'initial', 'stop', True, WorkflowConfigError),
790790
('start', 'final', 'stop', 'initial', True, WorkflowConfigError),
791791
(
792792
'stop', 'initial', 'start', 'final', True,
793-
"Stop cycle point '20000101T0000Z' will have no effect as it"
793+
"stop cycle point '20000101T0000Z' will have no effect as it"
794794
" is before the initial cycle point '20010101T0000Z'."
795795
),
796796
(
797797
'stop', 'initial', 'final', 'start', True,
798-
"Stop cycle point '20000101T0000Z' will have no effect as it"
798+
"stop cycle point '20000101T0000Z' will have no effect as it"
799799
" is before the initial cycle point '20010101T0000Z'."
800800
),
801801
(
802802
'stop', 'start', 'initial', 'final', True,
803-
"Stop cycle point '20000101T0000Z' will have no effect as it"
803+
"stop cycle point '20000101T0000Z' will have no effect as it"
804804
" is before the initial cycle point '20020101T0000Z'."
805805
),
806806
('stop', 'start', 'final', 'initial', True, WorkflowConfigError),

0 commit comments

Comments
 (0)