def test_encode_and_decode(): xyz = np.arange(100).astype('f4') shape = xyz.shape b64_str = encode_base64(xyz) new_xyz = decode_base64(b64_str, dtype='f4', shape=shape) aa_eq(xyz, new_xyz)