Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
ariostas committed Feb 7, 2025
1 parent 2443ff8 commit 6e8b9bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_0840_support_tleafG.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def test_support_leafG(tmp_path):
f = ROOT.TFile(filename, "recreate")
t = ROOT.TTree("mytree", "example tree")

n = np.array(2, dtype=np.int32)
n = np.int32(2)
t.Branch("mynum", n, "mynum/I")
x = np.array([[1, 2, 3], [4, 5, 6]])
t.Branch("myarrayG", x, "myarrayG[mynum][3]/G")
Expand Down

0 comments on commit 6e8b9bf

Please sign in to comment.