Is this test supposed to pass or to fail? (it currently fails) ```python def test_one_slice(): space = odl.uniform_discr([0,0,0],[1,1,1],(10,20,30)) x = space.one() x.shape # (10,20,30) assert x[0].shape == (20,30) # False, x[0] is a scalar ```