mirror of
https://github.com/fjosw/pyerrors.git
synced 2025-03-15 06:40:24 +01:00
test: small bug in non overlapping test fixed.
This commit is contained in:
parent
925f212e61
commit
ae68e5baad
1 changed files with 1 additions and 1 deletions
|
@ -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"])
|
||||
|
|
Loading…
Add table
Reference in a new issue