mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
16 lines
304 B
Python
16 lines
304 B
Python
import unittest
|
|
|
|
from lib import constants
|
|
|
|
|
|
class TestCaseForTestnet(unittest.TestCase):
|
|
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
super().setUpClass()
|
|
constants.set_testnet()
|
|
|
|
@classmethod
|
|
def tearDownClass(cls):
|
|
super().tearDownClass()
|
|
constants.set_mainnet()
|