extended_appointment - deletes appointment size

This commit is contained in:
Sergi Delgado Segura
2020-04-22 14:48:00 +02:00
parent 5f7a909804
commit eb6d292d3c
4 changed files with 15 additions and 19 deletions

View File

@@ -47,7 +47,6 @@ def test_build_appointments():
assert uuid in appointments_data.keys()
assert appointments_data[uuid].get("locator") == appointment.get("locator")
assert appointments_data[uuid].get("user_id") == appointment.get("user_id")
assert len(appointments_data[uuid].get("encrypted_blob")) == appointment.get("size")
assert uuid in locator_uuid_map[appointment.get("locator")]

View File

@@ -45,7 +45,6 @@ def test_get_summary(appointment_data):
assert ExtendedAppointment.from_dict(appointment_data).get_summary() == {
"locator": appointment_data["locator"],
"user_id": appointment_data["user_id"],
"size": len(appointment_data["encrypted_blob"]),
}