Fix Bug in test_presentation_objects.py when Current Month is November
Closed this issue · 0 comments
valentinaschueller commented
changed_month = datetime.datetime(current_date.year, (current_date.month + 1) % 12, 25)
leads to bug if current_date.month + 1 == 12
(ValueError, month must be in 1...12). Fix this!