We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ab7bee commit 55302a0Copy full SHA for 55302a0
tests/factories.py
@@ -2,6 +2,7 @@
2
3
# Standard Library
4
import datetime
5
+from datetime import timedelta
6
import uuid
7
8
# Third Party Stuff
@@ -138,7 +139,7 @@ class Meta:
138
139
strategy = factory.CREATE_STRATEGY
140
141
event_date = fuzzy.FuzzyDate(datetime.date.today(),
- datetime.date(2017, 1, 1)).fuzz()
142
+ datetime.date.today() + timedelta(days=90)).fuzz()
143
start_time = fuzzy.FuzzyChoice(['9:30.750000', ]).fuzz()
144
end_time = fuzzy.FuzzyChoice(['10:15.750000', ]).fuzz()
145
conference = factory.SubFactory("tests.factories.ConferenceFactory")
0 commit comments