Skip to content

Commit

Permalink
Remove implicitly concatenated strings
Browse files Browse the repository at this point in the history
Co-authored-by: Peter Lamut <plamut@users.noreply.github.com>
  • Loading branch information
francois-baptiste and plamut committed May 25, 2020
1 parent 3486d44 commit 73addd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/test_table.py
Expand Up @@ -3752,7 +3752,7 @@ def test___repr___explicit(self):
time_partitioning = self._make_one(
type_=TimePartitioningType.DAY, field="name", expiration_ms=10000
)
expected = "TimePartitioning(" "expiration_ms=10000," "field=name," "type_='DAY')"
expected = "TimePartitioning(expiration_ms=10000,field=name,type_='DAY')"
self.assertEqual(repr(time_partitioning), expected)

def test_set_expiration_w_none(self):
Expand Down

0 comments on commit 73addd0

Please sign in to comment.