Skip to content

Commit

Permalink
Fix unit test and increase version number
Browse files Browse the repository at this point in the history
  • Loading branch information
holgern committed May 7, 2020
1 parent 8f5634f commit 00e891d
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion beem/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.23.4'
version = '0.23.5'
2 changes: 1 addition & 1 deletion beemapi/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.23.4'
version = '0.23.5'
2 changes: 1 addition & 1 deletion beembase/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.23.4'
version = '0.23.5'
2 changes: 1 addition & 1 deletion beemgraphenebase/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.23.4'
version = '0.23.5'
2 changes: 0 additions & 2 deletions tests/beem/test_comment.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,6 @@ def test_comment(self):
c.blockchain.rpc.next()
c.refresh()
title = c.title
self.assertTrue(isinstance(c.id, int))
self.assertTrue(c.id > 0)
self.assertEqual(c.author, self.author)
self.assertEqual(c.permlink, self.permlink)
self.assertEqual(c.authorperm, self.authorperm)
Expand Down
4 changes: 2 additions & 2 deletions tests/beem/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,8 @@ def test_seperate_yaml_dict_from_body(self):
t = "---\npar1: data1\npar2: data2\npar3: 3\n---\n test ---"
body, par = seperate_yaml_dict_from_body(t)
self.assertEqual(par, {"par1": "data1", "par2": "data2", "par3": 3})
self.assertEqual(body, "\n test ---")
self.assertEqual(body, " test ---")
t = "---\npar1:data1\npar2:data2\npar3:3\n---\n test ---"
body, par = seperate_yaml_dict_from_body(t)
self.assertEqual(par, {"par1": "data1", "par2": "data2", "par3": 3})
self.assertEqual(body, "\n test ---")
self.assertEqual(body, " test ---")

0 comments on commit 00e891d

Please sign in to comment.