Skip to content

Commit ee317e5

Browse files
committed
update the unit tests
Signed-off-by: JustinRush80 <[email protected]>
1 parent a5a9619 commit ee317e5

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

python/tests/test_alter.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -53,16 +53,6 @@ def test_add_constraint(tmp_path: pathlib.Path, sample_table: Table):
5353
write_deltalake(tmp_path, data, mode="append")
5454

5555

56-
def test_add_multiple_constraints(tmp_path: pathlib.Path, sample_table: Table):
57-
write_deltalake(tmp_path, sample_table)
58-
59-
dt = DeltaTable(tmp_path)
60-
61-
with pytest.raises(ValueError):
62-
dt.alter.add_constraint(
63-
{"check_price": "price >= 0", "check_price2": "price >= 0"}
64-
)
65-
6656

6757
def test_add_constraint_roundtrip_metadata(tmp_path: pathlib.Path, sample_table: Table):
6858
write_deltalake(tmp_path, sample_table, mode="append")

0 commit comments

Comments
 (0)