Skip to content
This repository has been archived by the owner on Nov 28, 2023. It is now read-only.

Commit

Permalink
pep8
Browse files Browse the repository at this point in the history
  • Loading branch information
Yoav Aviram committed Jul 11, 2012
1 parent f55be28 commit 16f6426
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests.py
Expand Up @@ -80,7 +80,7 @@ def setUp(self):
* GOOGLE_SPREADSHEET_KEY
* GOOGLE_WORKSHEET_KEY
* COLUMN_NAME
* COLUMN_UNIQUE_VALUE
* COLUMN_UNIQUE_VALUE
Are imported from a custom file named: 'test_settings.py'
"""
Expand Down Expand Up @@ -132,7 +132,7 @@ def test_insert_delete_row(self):
assert_equals(len(insert_rows), num_rows + 1)
self.sheet._flush_cache()
insert_rows = self.sheet.get_rows()
assert_equals(len(insert_rows), num_rows + 1)
assert_equals(len(insert_rows), num_rows + 1)
self.sheet.delete_row_by_index(num_rows)
delete_rows = self.sheet.get_rows()
assert_equals(len(delete_rows), num_rows)
Expand All @@ -156,7 +156,7 @@ def test_delete_by_id(self):
assert_equals(len(insert_rows), num_rows + 1)
self.sheet._flush_cache()
insert_rows = self.sheet.get_rows()
assert_equals(len(insert_rows), num_rows + 1)
assert_equals(len(insert_rows), num_rows + 1)
self.sheet.delete_row(new_row)
delete_rows = self.sheet.get_rows()
assert_equals(len(delete_rows), num_rows)
Expand Down

0 comments on commit 16f6426

Please sign in to comment.