We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a37c41a commit 6a7942dCopy full SHA for 6a7942d
1 file changed
bigtable/unit_tests/test_row_data.py
@@ -416,21 +416,6 @@ def test_invalid_empty_chunk(self):
416
with self.assertRaises(InvalidChunk):
417
prd.consume_next()
418
419
- def test_invalid_empty_second_chunk(self):
420
- from google.cloud.bigtable.row_data import InvalidChunk
421
-
422
- chunks = _generate_cell_chunks(['', ''])
423
- first = chunks[0]
424
- first.row_key = b'RK'
425
- first.family_name.value = 'A'
426
- first.qualifier.value = b'C'
427
- response = _ReadRowsResponseV2(chunks)
428
- iterator = _MockCancellableIterator(response)
429
- prd = self._make_one(iterator)
430
- with self.assertRaises(InvalidChunk):
431
- prd.consume_next()
432
433
434
class TestPartialRowsData_JSON_acceptance_tests(unittest.TestCase):
435
436
_json_tests = None
0 commit comments