File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -603,14 +603,14 @@ def test_CrontabSchedule_unicode(self):
603
603
minute = 3 ,
604
604
hour = 3 ,
605
605
day_of_week = None ,
606
- )) == '3 3 * * * (m/h/d/ dM/MY) UTC'
606
+ )) == '3 3 * * * (m/h/dM/MY/d ) UTC'
607
607
assert str (CrontabSchedule (
608
608
minute = 3 ,
609
609
hour = 3 ,
610
610
day_of_week = 'tue' ,
611
611
day_of_month = '*/2' ,
612
612
month_of_year = '4,6' ,
613
- )) == '3 3 tue */2 4,6 (m/h/d/ dM/MY) UTC'
613
+ )) == '3 3 */2 4,6 tue (m/h/dM/MY/d ) UTC'
614
614
615
615
def test_PeriodicTask_unicode_interval (self ):
616
616
p = self .create_model_interval (schedule (timedelta (seconds = 10 )))
@@ -621,7 +621,7 @@ def test_PeriodicTask_unicode_crontab(self):
621
621
hour = '4, 5' ,
622
622
day_of_week = '4, 5' ,
623
623
))
624
- assert str (p ) == """{0}: * 4,5 4,5 * * (m/h/d/ dM/MY) UTC""" .format (
624
+ assert str (p ) == """{0}: * 4,5 * * 4,5 (m/h/dM/MY/d ) UTC""" .format (
625
625
p .name
626
626
)
627
627
You can’t perform that action at this time.
0 commit comments