diff --git a/tests/test_0999-inverted-axes-variances-hist-888.py b/tests/test_0999-inverted-axes-variances-hist-888.py index c950d23e7..ae803da24 100644 --- a/tests/test_0999-inverted-axes-variances-hist-888.py +++ b/tests/test_0999-inverted-axes-variances-hist-888.py @@ -3,7 +3,7 @@ import pytest import uproot import numpy -import hist +import hist import ROOT @@ -20,10 +20,10 @@ def test_axes_of_variances_to_hist_2D_weighted(): hroot2.Fill(a[i], b[i], c[i]) # variances with flow: - # 0.0 0.0 0.0 0.0 0.0 - # 0.0 2329.0 98.0 289.0 0.0 - # 0.0 0.0 0.0 50.0 0.0 - # 0.0 0.0 0.0 0.0 0.0 + # 0.0 0.0 0.0 0.0 0.0 + # 0.0 2329.0 98.0 289.0 0.0 + # 0.0 0.0 0.0 50.0 0.0 + # 0.0 0.0 0.0 0.0 0.0 huproot2 = uproot.from_pyroot(hroot2) vuproot = huproot2.variances() @@ -32,4 +32,3 @@ def test_axes_of_variances_to_hist_2D_weighted(): for i in range(2): for j in range(3): assert vuproot[i][j] == vhist[i][j] -