Skip to content

Commit

Permalink
Update a tests arguments
Browse files Browse the repository at this point in the history
Signed-off-by: jamshale <jamiehalebc@gmail.com>
  • Loading branch information
jamshale committed Jul 2, 2024
1 parent 33bcdd2 commit c8a3425
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions aries_cloudagent/indy/models/tests/test_non_rev_interval.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
FROM = 1000000000
TO = 1234567890

INTERVAL_FROM = IndyNonRevocationInterval(timestamp_from=FROM)
INTERVAL_TO = IndyNonRevocationInterval(timestamp_to=TO)
INTERVAL = IndyNonRevocationInterval(timestamp_from=FROM, timestamp_to=TO)
INTERVAL_FROM = IndyNonRevocationInterval(fro=FROM)
INTERVAL_TO = IndyNonRevocationInterval(to=TO)
INTERVAL = IndyNonRevocationInterval(fro=FROM, to=TO)


class TestInterval(TestCase):
Expand Down

0 comments on commit c8a3425

Please sign in to comment.