Skip to content

Commit

Permalink
prints in a test
Browse files Browse the repository at this point in the history
  • Loading branch information
pomponchik committed Aug 8, 2024
1 parent 7a7e2a2 commit e353c39
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/units/tokens/test_timeout_token.py
Original file line number Diff line number Diff line change
Expand Up @@ -388,6 +388,8 @@ def test_bigger_temp_timeout_token_plus_less_temp_timeout_token_with_not_same_mo
def test_less_or_equal_temp_not_monotonic_timeout_token_plus_bigger_or_equal_temp_not_monotonic_timeout_token_with_same_monotonic_flag(timeout_for_equal_or_bigger_token, addictional_kwargs):
token = TimeoutToken(1, **addictional_kwargs) + TimeoutToken(timeout_for_equal_or_bigger_token, **addictional_kwargs)

print(token.deadline)
print(token.tokens[0].deadline if len(token.tokens) > 0 else None)
assert isinstance(token, TimeoutToken)
assert token.timeout == 1
assert len(token.tokens) == 0
Expand Down

0 comments on commit e353c39

Please sign in to comment.