Skip to content

Commit 4d760d8

Browse files
committed
Fix tests
1 parent 854fb2e commit 4d760d8

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

tests/test_organizations.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ def mock_organization_updated(self):
3838
"organization_id": "org_01EHT88Z8J8795GZNQ4ZP1J81T",
3939
"verification_strategy": "dns",
4040
"verification_token": "token",
41+
"created_at": datetime.datetime.now().isoformat(),
42+
"updated_at": datetime.datetime.now().isoformat(),
4143
}
4244
],
4345
}

tests/utils/fixtures/mock_organization.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ def __init__(self, id):
2020
id="org_domain_01EHT88Z8WZEFWYPM6EC9BX2R8",
2121
organization_id="org_12345",
2222
domain="example.io",
23+
created_at=now,
24+
updated_at=now,
2325
)
2426
],
2527
metadata={"key": "value"},

0 commit comments

Comments
 (0)