Skip to content

Commit

Permalink
fix names in test
Browse files Browse the repository at this point in the history
  • Loading branch information
harisang committed Oct 24, 2024
1 parent 5cb954a commit 3064870
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/e2e/mev_blocker_kickbacks_test.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Tests for large score test.
Test for MEV Blocker kickbacks test.
"""

import unittest
Expand All @@ -8,16 +8,16 @@
)


class TestHighScore(unittest.TestCase):
def test_high_score(self) -> None:
high_score_test = MEVBlockerRefundsMonitoringTest()
class TestMevBlockerRefunds(unittest.TestCase):
def test_mev_blocker_refunds(self) -> None:
mev_blocker_refunds_test = MEVBlockerRefundsMonitoringTest()
# large kickback tx
tx_hash = "0xcbf4677177fb320b7e000ca95b31b5259648c75ebcfa9544014298ddfea94282"
self.assertTrue(high_score_test.run(tx_hash))
self.assertTrue(mev_blocker_refunds_test.run(tx_hash))

# no kickback tx
tx_hash = "0x3198bc18bc41ec3eb35cc382697d18917ebdaf03528e7dcc5270488d156037c8"
self.assertTrue(high_score_test.run(tx_hash))
self.assertTrue(mev_blocker_refunds_test.run(tx_hash))


if __name__ == "__main__":
Expand Down

0 comments on commit 3064870

Please sign in to comment.