Skip to content

Commit

Permalink
remove dtype from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ksunden committed Jun 26, 2024
1 parent 4520cba commit 3b8662e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion data_prototype/tests/test_containers.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ def _verify_describe(container):
assert set(data) == set(desc)
for k, v in data.items():
assert v.shape == desc[k].shape
assert v.dtype == desc[k].dtype


def test_array_describe(ac):
Expand Down
4 changes: 2 additions & 2 deletions examples/units.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
lw = Line(cont, [xconv, yconv])

ax.add_artist(lw)
nax.xaxis.set_units(ureg.feet)
nax.yaxis.set_units(ureg.m)
nax.xaxis.set_units(ureg.m)
nax.yaxis.set_units(ureg.cm)

plt.show()

0 comments on commit 3b8662e

Please sign in to comment.