Skip to content

Commit

Permalink
whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinjqliu committed Mar 7, 2024
1 parent 948f8f6 commit b2cd2e3
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions tests/integration/test_reads.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,20 +107,16 @@ def test_table_properties(catalog: Catalog) -> None:

with table.transaction() as transaction:
transaction.set_properties(abc="🤪")

assert table.properties == dict(abc="🤪", **DEFAULT_PROPERTIES)

with table.transaction() as transaction:
transaction.remove_properties("abc")

assert table.properties == DEFAULT_PROPERTIES

table = table.transaction().set_properties(abc="def").commit_transaction()

assert table.properties == dict(abc="def", **DEFAULT_PROPERTIES)

table = table.transaction().remove_properties("abc").commit_transaction()

assert table.properties == DEFAULT_PROPERTIES


Expand All @@ -133,20 +129,16 @@ def test_table_properties_dict(catalog: Catalog) -> None:

with table.transaction() as transaction:
transaction.set_properties({"abc": "🤪"})

assert table.properties == dict({"abc": "🤪"}, **DEFAULT_PROPERTIES)

with table.transaction() as transaction:
transaction.remove_properties("abc")

assert table.properties == DEFAULT_PROPERTIES

table = table.transaction().set_properties({"abc": "def"}).commit_transaction()

assert table.properties == dict({"abc": "def"}, **DEFAULT_PROPERTIES)

table = table.transaction().remove_properties("abc").commit_transaction()

assert table.properties == DEFAULT_PROPERTIES


Expand Down

0 comments on commit b2cd2e3

Please sign in to comment.