Skip to content
This repository was archived by the owner on Jan 20, 2026. It is now read-only.

Commit fee3f29

Browse files
committed
fix unit test and add newest changelog
1 parent be7a3b0 commit fee3f29

2 files changed

Lines changed: 16 additions & 17 deletions

File tree

CHANGELOG.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
Changelog
22
=========
3+
0.20.13
4+
-------
5+
* beempy post improved
6+
* beempy ImageUploader added
7+
* issues #125 and #126 fixed
8+
* VotedBeforeWaitTimeReached exception added
9+
10+
0.20.12
11+
-------
12+
* pep8 formating improved
13+
* Too Many Requests error handled
14+
* different limit handling in WLS fixed for account history
15+
* percent-steem-dollars and max-accepted-payout added to beempy post
16+
317
0.20.10
418
-------
519
* update_account_keys added for changing account keys

tests/beem/test_constants.py

Lines changed: 2 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,6 @@ class Testcases(unittest.TestCase):
2222
def setUpClass(cls):
2323
nodelist = NodeList()
2424
nodelist.update_nodes(steem_instance=Steem(node=nodelist.get_nodes(normal=True, appbase=True), num_retries=10))
25-
cls.bts = Steem(
26-
node=nodelist.get_nodes(appbase=False),
27-
nobroadcast=True,
28-
bundle=False,
29-
# Overwrite wallet to use this list of wifs only
30-
keys={"active": wif},
31-
num_retries=10
32-
)
3325
cls.appbase = Steem(
3426
node=nodelist.get_nodes(appbase=True, dev=True),
3527
nobroadcast=True,
@@ -39,15 +31,8 @@ def setUpClass(cls):
3931
num_retries=10
4032
)
4133

42-
@parameterized.expand([
43-
("non_appbase"),
44-
("appbase"),
45-
])
46-
def test_constants(self, node_param):
47-
if node_param == "non_appbase":
48-
stm = self.bts
49-
else:
50-
stm = self.appbase
34+
def test_constants(self):
35+
stm = self.appbase
5136
steem_conf = stm.get_config()
5237
if "STEEM_100_PERCENT" in steem_conf:
5338
STEEM_100_PERCENT = steem_conf['STEEM_100_PERCENT']

0 commit comments

Comments
 (0)