summaryrefslogtreecommitdiff
blob: 0ef0f25228c3629818c7e072e438795b538bd56e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Upstream: https://github.com/jarun/buku/pull/462/commits/9ecf8857d74f51666ba2ea40344c8ba99accccb8

From 9ecf8857d74f51666ba2ea40344c8ba99accccb8 Mon Sep 17 00:00:00 2001
From: rachmadaniHaryono <foreturiga@gmail.com>
Date: Thu, 6 Aug 2020 14:52:31 +0800
Subject: [PATCH] fix: test: delete_rec

---
 tests/test_bukuDb.py | 6 ++----
  1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/tests/test_bukuDb.py b/tests/test_bukuDb.py
index 7e798b3..8b56331 100644
--- a/tests/test_bukuDb.py
+++ b/tests/test_bukuDb.py
@@ -936,16 +936,14 @@ def test_delete_rec_on_non_interger(index, low, high, is_range):
 
     for bookmark in TEST_BOOKMARKS:
         bdb.add_rec(*bookmark)
-    db_len = len(TEST_BOOKMARKS)
 
     if is_range and not (isinstance(low, int) and isinstance(high, int)):
         with pytest.raises(TypeError):
             bdb.delete_rec(index=index, low=low, high=high, is_range=is_range)
         return
     if not is_range and not isinstance(index, int):
-        res = bdb.delete_rec(index=index, low=low, high=high, is_range=is_range)
-        assert not res
-        assert len(bdb.get_rec_all()) == db_len
+        with pytest.raises(TypeError):
+            bdb.delete_rec(index=index, low=low, high=high, is_range=is_range)
     else:
         assert bdb.delete_rec(index=index, low=low, high=high, is_range=is_range)