remove superfluous code in test_bucket_list_maxkeys_zero

This commit is contained in:
Stephon Striplin 2011-08-11 15:52:16 -07:00
parent 16d84101e4
commit fd68aa2b5b

View file

@ -354,8 +354,7 @@ def test_bucket_list_maxkeys_zero():
li = bucket.get_all_keys(max_keys=0) li = bucket.get_all_keys(max_keys=0)
eq(li.is_truncated, False) eq(li.is_truncated, False)
names = [e.name for e in li] eq(li, [])
eq(names, [])
@attr('fails_on_rgw') @attr('fails_on_rgw')