We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d128c6 commit 1f38119Copy full SHA for 1f38119
1 file changed
tests/unit/v2_client/test_row.py
@@ -304,7 +304,9 @@ def _delete_cells_helper(time_range=None):
304
expected_mutation = DeleteRangeFromColumn(family=column_family_id, qualifier=column)
305
if time_range is not None:
306
timestamps = time_range._to_dict()
307
- expected_mutation.start_timestamp_micros = timestamps.get("start_timestamp_micros")
+ expected_mutation.start_timestamp_micros = timestamps.get(
308
+ "start_timestamp_micros"
309
+ )
310
expected_mutation.end_timestamp_micros = timestamps.get("end_timestamp_micros")
311
_assert_mutations_equal(row._mutations, [expected_mutation])
312
0 commit comments