mirror of
https://github.com/fjosw/pyerrors.git
synced 2025-03-15 14:50:25 +01:00
tests: np.alltrue replaced by np.all.
This commit is contained in:
parent
1a811b04f3
commit
dc73456759
1 changed files with 1 additions and 1 deletions
|
@ -1096,7 +1096,7 @@ def test_reduce_deltas():
|
|||
for idx_new in idl:
|
||||
new = pe.obs._reduce_deltas(deltas, idx_old, idx_new)
|
||||
print(new)
|
||||
assert(np.alltrue([float(i) for i in idx_new] == new))
|
||||
assert(np.all([float(i) for i in idx_new] == new))
|
||||
|
||||
|
||||
def test_cobs_array():
|
||||
|
|
Loading…
Add table
Reference in a new issue