ensure correct shape

This commit is contained in:
Martin Diehl 2020-12-13 08:45:08 +01:00
parent b6db675f1a
commit 610c233fb6
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ class TestTable:
@pytest.mark.parametrize('N',[10,40])
def test_len(self,N):
len(Table(np.random.rand(N,3),{'X':3})) == N
assert len(Table(np.random.rand(N,3),{'X':3})) == N
def test_get_scalar(self,default):
d = default.get('s')