Fix missing session passing for nonce reserve teste

This commit is contained in:
nolash
2021-07-14 23:45:23 +02:00
parent 6f3069b90c
commit bb92b417e2
4 changed files with 6 additions and 4 deletions

View File

@@ -1,6 +1,7 @@
# third-party imports
# extended imports
import pytest
import uuid
import unittest
# local imports
from cic_eth.db.models.nonce import (
@@ -55,7 +56,7 @@ def test_nonce_reserve(
o = q.first()
assert o.nonce == 43
nonce = NonceReservation.release(eth_empty_accounts[0], str(uu))
nonce = NonceReservation.release(eth_empty_accounts[0], str(uu), session=init_database)
init_database.commit()
assert nonce == (str(uu), 42)