Skip to content

Commit 73addd0

Browse files
Remove implicitly concatenated strings
Co-authored-by: Peter Lamut <[email protected]>
1 parent 3486d44 commit 73addd0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/test_table.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3752,7 +3752,7 @@ def test___repr___explicit(self):
37523752
time_partitioning = self._make_one(
37533753
type_=TimePartitioningType.DAY, field="name", expiration_ms=10000
37543754
)
3755-
expected = "TimePartitioning(" "expiration_ms=10000," "field=name," "type_='DAY')"
3755+
expected = "TimePartitioning(expiration_ms=10000,field=name,type_='DAY')"
37563756
self.assertEqual(repr(time_partitioning), expected)
37573757

37583758
def test_set_expiration_w_none(self):

0 commit comments

Comments
 (0)