Skip to content

Commit

Permalink
Addressing review comment (commit to be squashed).
Browse files Browse the repository at this point in the history
  • Loading branch information
dhermes committed Feb 17, 2016
1 parent 876efc3 commit 2399a0d
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions gcloud/bigtable/test_row_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,12 +170,9 @@ def test_to_dict(self):
}

result = partial_row_data.to_dict()
col1 = family_name1.encode('ascii') + b':' + qual1
col2 = family_name1.encode('ascii') + b':' + qual2
col3 = family_name2.encode('ascii') + b':' + qual3
expected_result = {
col1: cell1,
col2: cell2,
col3: cell3,
b'name1:col1': cell1,
b'name1:col2': cell2,
b'name2:col3': cell3,
}
self.assertEqual(result, expected_result)

0 comments on commit 2399a0d

Please sign in to comment.