Skip to content

Commit

Permalink
Update assertion to test data directly.
Browse files Browse the repository at this point in the history
  • Loading branch information
daspecster committed Jan 3, 2017
1 parent c5440a9 commit c5990c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system_tests/bigtable.py
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ def test_read_large_cell_limit(self):
cell = partial_row_data.cells[COLUMN_FAMILY_ID1]
column = cell[COL_NAME1]
self.assertEqual(len(column), 1)
self.assertEqual(len(column[0].value), number_of_bytes)
self.assertEqual(column[0].value, data)

def test_read_row(self):
row = self._table.row(ROW_KEY)
Expand Down

0 comments on commit c5990c1

Please sign in to comment.