Skip to content

Commit

Permalink
Updating standard system tests to pass.
Browse files Browse the repository at this point in the history
The equality check for our mocked PartialRowData instances
failed because we have added a _chunks_encountered boolean
since last running the system tests.
  • Loading branch information
dhermes committed Sep 19, 2015
1 parent 3a7070d commit 9324d8f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions system_tests/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,7 @@ def test_read_rows(self):
# Instead we should make the values public or provide factories
# for constructing objects with them.
row_data = PartialRowData(ROW_KEY)
row_data._chunks_encountered = True
row_data._committed = True
row_data._cells = {
COLUMN_FAMILY_ID1: {
Expand All @@ -342,6 +343,7 @@ def test_read_rows(self):
}

row_alt_data = PartialRowData(ROW_KEY_ALT)
row_alt_data._chunks_encountered = True
row_alt_data._committed = True
row_alt_data._cells = {
COLUMN_FAMILY_ID1: {
Expand Down

0 comments on commit 9324d8f

Please sign in to comment.