From 84ecec90639defb6e18803669d57fb9994c6f048 Mon Sep 17 00:00:00 2001 From: Holger Nahrstaedt <holger@nahrstaedt.de> Date: Sun, 3 Jun 2018 22:59:49 +0200 Subject: [PATCH] Fix unit test --- tests/beem/test_comment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/beem/test_comment.py b/tests/beem/test_comment.py index 591ff51c..f5767a7f 100644 --- a/tests/beem/test_comment.py +++ b/tests/beem/test_comment.py @@ -240,6 +240,6 @@ class Testcases(unittest.TestCase): def test_recent_by_path(self): bts = self.bts - r = RecentByPath(category="hot", steem_instance=bts) + r = RecentByPath(path="hot", steem_instance=bts) self.assertTrue(len(r) > 0) self.assertTrue(r[0] is not None) -- GitLab