Skip to content

Commit 6572e59

Browse files
committed
Remove test case
1 parent 49e06d9 commit 6572e59

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

tests/test_search.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -238,16 +238,6 @@ def test_search_multiple_stars():
238238
assert res['a'][0]['b'][2]['c'] == 3
239239

240240

241-
def test_search_glob_list():
242-
d = {'a': {'b': []}}
243-
res = dpath.search(d, 'a/b/*')
244-
assert res == {'a': {'b': []}}
245-
246-
d = {'a': {'b': [1, 2, 3]}}
247-
dpath.search(d, 'a/b/*', afilter=lambda x: x > 3 if isinstance(x, int) else True)
248-
assert res == {'a': {'b': []}}
249-
250-
251241
def test_search_negative_index():
252242
d = {'a': {'b': [1, 2, 3]}}
253243
res = dpath.search(d, 'a/b/-1')

0 commit comments

Comments
 (0)