Skip to content

Commit

Permalink
Dead chickens on the altar of pylint/pep8 continuation taboos.
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed Dec 17, 2014
1 parent f11fa24 commit 9cd0f6a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions gcloud/datastore/test_connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,8 @@ def test_lookup_multiple_keys_w_missing_non_empty(self):
key_pb2 = Key(path=[{'kind': 'Kind', 'id': 2345}]).to_protobuf()
conn = self._makeOne()
missing = ['this', 'list', 'is', 'not', 'empty']
self.assertRaises(ValueError,
self.assertRaises(
ValueError,
conn.lookup, DATASET_ID, [key_pb1, key_pb2], missing=missing)

def test_lookup_multiple_keys_w_deferred(self):
Expand Down Expand Up @@ -385,7 +386,8 @@ def test_lookup_multiple_keys_w_deferred_non_empty(self):
key_pb2 = Key(path=[{'kind': 'Kind', 'id': 2345}]).to_protobuf()
conn = self._makeOne()
deferred = ['this', 'list', 'is', 'not', 'empty']
self.assertRaises(ValueError,
self.assertRaises(
ValueError,
conn.lookup, DATASET_ID, [key_pb1, key_pb2], deferred=deferred)

def test_lookup_multiple_keys_w_deferred_from_backend_but_not_passed(self):
Expand Down

0 comments on commit 9cd0f6a

Please sign in to comment.