Skip to content
Snippets Groups Projects
Commit 51c20142 authored by Manuel Günther's avatar Manuel Günther
Browse files

Fixed py3 issue with range() and list()

parent 2ccea7bc
No related branches found
No related tags found
No related merge requests found
...@@ -83,10 +83,10 @@ def test_sampling(): ...@@ -83,10 +83,10 @@ def test_sampling():
assert indices == list(range(5, 100, 10)) assert indices == list(range(5, 100, 10))
indices = bob.bio.base.selected_indices(100, 300) indices = bob.bio.base.selected_indices(100, 300)
assert indices == list(range(100)) assert indices == range(100)
indices = bob.bio.base.selected_indices(100, None) indices = bob.bio.base.selected_indices(100, None)
assert indices == list(range(100)) assert indices == range(100)
array = numpy.arange(100) array = numpy.arange(100)
elements = bob.bio.base.selected_elements(array, 10) elements = bob.bio.base.selected_elements(array, 10)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment