forked from LBRYCommunity/lbry-sdk
fix test method name to make sure it gets run
This commit is contained in:
parent
462fd8bad1
commit
d02da2f3a5
1 changed files with 2 additions and 2 deletions
|
@ -1,11 +1,11 @@
|
|||
import unittest
|
||||
from twisted.trial import unittest
|
||||
|
||||
from torba.util import ArithUint256
|
||||
|
||||
|
||||
class TestArithUint256(unittest.TestCase):
|
||||
|
||||
def test(self):
|
||||
def test_arithunit256(self):
|
||||
# https://github.com/bitcoin/bitcoin/blob/master/src/test/arith_uint256_tests.cpp
|
||||
|
||||
from_compact = ArithUint256.from_compact
|
||||
|
|
Loading…
Reference in a new issue