Skip to content

Commit 1095168

Browse files
committed
Merge pull request #199 from tseaver/master
Fix issue # in test comment.
2 parents 8bb3222 + 1823b0f commit 1095168

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

gcloud/storage/test_bucket.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,7 @@ def test_save_default_object_acl_existing_set_new_passed(self):
648648
bucket = self._makeOne(connection, NAME, metadata)
649649
bucket.reload_default_object_acl()
650650
self.assertTrue(bucket.save_default_object_acl(new_acl) is bucket)
651-
# See: https://github.com/GoogleCloudPlatform/gcloud-python/issues/138
651+
# See: https://github.com/GoogleCloudPlatform/gcloud-python/issues/139
652652
#self.assertEqual(list(bucket.default_object_acl), new_acl)
653653
kw = connection._requested
654654
self.assertEqual(len(kw), 1)
@@ -666,14 +666,12 @@ def test_clear_default_object_acl(self):
666666
bucket = self._makeOne(connection, NAME, metadata)
667667
bucket.reload_default_object_acl()
668668
self.assertTrue(bucket.clear_default_object_acl() is bucket)
669-
# See: https://github.com/GoogleCloudPlatform/gcloud-python/issues/138
669+
# See: https://github.com/GoogleCloudPlatform/gcloud-python/issues/139
670670
#self.assertEqual(list(bucket.default_object_acl), [])
671671
kw = connection._requested
672672
self.assertEqual(len(kw), 1)
673673
self.assertEqual(kw[0]['method'], 'PATCH')
674674
self.assertEqual(kw[0]['path'], '/b/%s' % NAME)
675-
# See: https://github.com/GoogleCloudPlatform/gcloud-python/issues/139
676-
#self.assertEqual(list(bucket.default_object_acl), [])
677675
#self.assertEqual(kw[0]['data'], {'defaultObjectAcl': []})
678676
self.assertEqual(kw[0]['query_params'], {'projection': 'full'})
679677

0 commit comments

Comments
 (0)