Merged in [18999] from rjsparks@nostrum.com:
Correct invalid date assumption in rfc8989 eligibility tests. - Legacy-Id: 19001 Note: SVN reference [18999] has been migrated to Git commit 53fa35c148e2d9a3a01987601de5d20edb0c401f
This commit is contained in:
parent
b0590c838f
commit
b8771006b3
|
@ -2290,9 +2290,11 @@ class rfc8989EligibilityTests(TestCase):
|
|||
|
||||
def test_elig_by_office_active_groups(self):
|
||||
|
||||
chair = RoleFactory(name_id='chair').person
|
||||
before_elig_date = self.nomcom.first_call_for_volunteers - datetime.timedelta(days=5)
|
||||
|
||||
secr = RoleFactory(name_id='secr').person
|
||||
chair = RoleFactory(name_id='chair',group__time=before_elig_date).person
|
||||
|
||||
secr = RoleFactory(name_id='secr',group__time=before_elig_date).person
|
||||
|
||||
nobody=PersonFactory()
|
||||
|
||||
|
|
Loading…
Reference in a new issue