We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59d95dc commit 7179a13Copy full SHA for 7179a13
tiledb/tests/test_fixes.py
@@ -357,14 +357,17 @@ def test_sc56611(self):
357
@pytest.mark.parametrize(
358
"array_data",
359
[
360
- np.array([b"", b"1", b"", b"", b"f", b""], dtype="S"),
361
- np.array([b"", b"1", b"", b"", b"f", b"3"], dtype="S"),
+ np.array([b"", b"testing", b"", b"with empty", b"bytes"], dtype="S"),
+ np.array([b"and", b"", b"again"], dtype="S"),
362
+ np.array(
363
+ [b"", b"and with", b"the last one", b"", b"emtpy", b""], dtype="S"
364
+ ),
365
],
366
)
367
def test_sc62594_buffer_resize(self, array_data):
368
uri = self.path("test_agis")
369
dom = tiledb.Domain(
- tiledb.Dim(name="dim", domain=(0, 5), tile=2, dtype=np.int64),
370
+ tiledb.Dim(name="dim", domain=(0, len(array_data) - 1), dtype=np.int64)
371
372
373
schema = tiledb.ArraySchema(
0 commit comments