We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 562bc08 commit 7e84ef0Copy full SHA for 7e84ef0
python/tests/test_highlevel.py
@@ -554,8 +554,8 @@ def test_samples_time(self):
554
min_samples.append(node.id)
555
if node.time >= time:
556
max_samples.append(node.id)
557
- assert np.array.equal(np.array(min_samples), ts.sampels(min_time=time))
558
- assert np.array.equal(np.array(max_samples), ts.sampels(max_time=time))
+ assert np.array_equal(np.array(min_samples), ts.samples(min_time=time))
+ assert np.array_equal(np.array(max_samples), ts.samples(max_time=time))
559
560
def test_genotype_matrix_indexing(self):
561
num_demes = 4
0 commit comments