Skip to content

Commit 6a7942d

Browse files
authored
remove invalid test case
1 parent a37c41a commit 6a7942d

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

bigtable/unit_tests/test_row_data.py

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -416,21 +416,6 @@ def test_invalid_empty_chunk(self):
416416
with self.assertRaises(InvalidChunk):
417417
prd.consume_next()
418418

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-
434419
class TestPartialRowsData_JSON_acceptance_tests(unittest.TestCase):
435420

436421
_json_tests = None

0 commit comments

Comments
 (0)