Skip to content

Commit

Permalink
fix: rename var
Browse files Browse the repository at this point in the history
  • Loading branch information
Sohill-Patel committed Oct 13, 2023
1 parent 52c3c94 commit ddcc880
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/test_spam.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,9 @@ def test_spam_create_referral_sets_in_epoch(
epoch_duration = EPOCH_LENGTH * 60 * 1000000000

vega.wait_fn(1)
spam_stats = vega.get_spam_statistics(referrer_id)
spam_stats_response = vega.get_spam_statistics(referrer_id)
spam_stats = MessageToDict(spam_stats_response)
logging.info(f"the spam stats are: {spam_stats=}")
spam_stats = MessageToDict(spam_stats)
assert (
int(spam_stats["statistics"]["createReferralSet"]["maxForEpoch"]) == max_spam
), "test-prerequisite net param change did not take place"
Expand Down

0 comments on commit ddcc880

Please sign in to comment.