HashedCustomer is now no longer necessary

This commit is contained in:
Jonas Linter
2025-12-03 11:10:27 +01:00
parent 34cb2131c4
commit df7d3c6543
5 changed files with 56 additions and 50 deletions

View File

@@ -740,9 +740,8 @@ class TestHashedMatchingLogic:
test_db_session.add(customer)
await test_db_session.flush()
hashed_customer = customer.create_hashed_customer()
test_db_session.add(hashed_customer)
await test_db_session.flush()
customer.update_hashed_fields()
reservation = Reservation(
customer_id=customer.id,