Skip to content

Commit

Permalink
Fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
iguinn committed Nov 25, 2024
1 parent 8f98559 commit 7afab72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,6 @@ def test_lh5concat(lgnd_test_data, tmptestdir):
outfile = f"{tmptestdir}/concat_test_struct_out.lh5"
cli.lh5concat(["--output", outfile, "--", infile1, infile2])

out_stp = store.read("stp", outfile)[0]
out_stp = store.read("stp", outfile)
assert out_stp.attrs["datatype"] == "struct{x}"
assert np.all(out_stp.x["col"].nda == np.array([0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1]))

0 comments on commit 7afab72

Please sign in to comment.