Skip to content

Commit

Permalink
Undo test rollback
Browse files Browse the repository at this point in the history
  • Loading branch information
bmcdonald3 committed Jun 11, 2024
1 parent bd3ad83 commit 9857968
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions PROTO_tests/tests/io_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def make_multi_dtype_dict():
]
),
),
#"c_9": ak.array(["abc", " ", "xyz", ""]),
"c_9": ak.array(["abc", " ", "xyz", ""]),
"c_10": ak.SegArray(
ak.array([0, 2, 5, 5]), ak.array(["a", "b", "c", "d", "e", "f", "g", "h", "i"])
),
Expand Down Expand Up @@ -1521,7 +1521,7 @@ def setup_class(cls):
"c_1": np.array([np.iinfo(np.int64).min, -1, 0, np.iinfo(np.int64).max]),
"c_3": np.array([False, True, False, False]),
"c_4": np.array([-0.0, np.finfo(np.float64).min, np.nan, np.inf]),
#"c_5": np.array(["abc", " ", "xyz", ""]),
"c_5": np.array(["abc", " ", "xyz", ""]),
},
index=np.arange(4),
)
Expand Down
2 changes: 1 addition & 1 deletion tests/parquet_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ def test_multicol_write(self):
"c_6": ak.SegArray(ak.array([0, 5, 10]), ak.randint(0, 1, 15, dtype=ak.bool)),
"c_7": ak.array(np.random.uniform(0, 100, 3)),
"c_8": ak.SegArray(ak.array([0, 9, 14]), ak.array(np.random.uniform(0, 100, 20))),
#"c_9": ak.array(["abc", "123", "xyz"]),
"c_9": ak.array(["abc", "123", "xyz"]),
"c_10": ak.SegArray(
ak.array([0, 2, 5]), ak.array(["a", "b", "c", "d", "e", "f", "g", "h", "i"])
),
Expand Down

0 comments on commit 9857968

Please sign in to comment.