fixed object comparision issue

Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
This commit is contained in:
Jürgen Eckel 2023-01-10 18:32:55 +01:00
parent b3d6b07c93
commit 0ba92ab71b
No known key found for this signature in database

View File

@ -50,7 +50,7 @@ def test_get_owned_ids(signed_create_tx, user_pk, db_conn):
txns = query.get_owned_ids(connection=db_conn, owner=user_pk)
tx_dict = signed_create_tx.to_dict()
owned_tx = DbTransaction.remove_generated_fields(txns[0].to_dict())
owned_tx = txns[0].to_dict()
assert owned_tx == tx_dict