Skip to content
Snippets Groups Projects
Commit fee3f291 authored by Holger's avatar Holger
Browse files

fix unit test and add newest changelog

parent be7a3b0c
No related branches found
No related tags found
No related merge requests found
Changelog
=========
0.20.13
-------
* beempy post improved
* beempy ImageUploader added
* issues #125 and #126 fixed
* VotedBeforeWaitTimeReached exception added
0.20.12
-------
* pep8 formating improved
* Too Many Requests error handled
* different limit handling in WLS fixed for account history
* percent-steem-dollars and max-accepted-payout added to beempy post
0.20.10
-------
* update_account_keys added for changing account keys
......
......@@ -22,14 +22,6 @@ class Testcases(unittest.TestCase):
def setUpClass(cls):
nodelist = NodeList()
nodelist.update_nodes(steem_instance=Steem(node=nodelist.get_nodes(normal=True, appbase=True), num_retries=10))
cls.bts = Steem(
node=nodelist.get_nodes(appbase=False),
nobroadcast=True,
bundle=False,
# Overwrite wallet to use this list of wifs only
keys={"active": wif},
num_retries=10
)
cls.appbase = Steem(
node=nodelist.get_nodes(appbase=True, dev=True),
nobroadcast=True,
......@@ -39,15 +31,8 @@ class Testcases(unittest.TestCase):
num_retries=10
)
@parameterized.expand([
("non_appbase"),
("appbase"),
])
def test_constants(self, node_param):
if node_param == "non_appbase":
stm = self.bts
else:
stm = self.appbase
def test_constants(self):
stm = self.appbase
steem_conf = stm.get_config()
if "STEEM_100_PERCENT" in steem_conf:
STEEM_100_PERCENT = steem_conf['STEEM_100_PERCENT']
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment