test: small bug in non overlapping test fixed.

This commit is contained in:
Fabian Joswig 2023-02-02 16:06:35 +00:00
parent 925f212e61
commit ae68e5baad
No known key found for this signature in database

View file

@ -1126,7 +1126,7 @@ def test_non_overlapping_operations_different_lengths():
second = samples[length // 5:]
f1 = pe.Obs([first], ["ensemble"], idl=[range(1, length // 5 + 1)])
s1 = pe.Obs([second], ["ensemble"], idl=[range(length // 5, length)])
s1 = pe.Obs([second], ["ensemble"], idl=[range(length // 5 + 1, length + 1)])
f2 = pe.Obs([first], ["first"])