]> git-server-git.apps.pok.os.sepia.ceph.com Git - s3-tests.git/commitdiff
startafter or continuation token shouldn't be returned if they are not specified... 297/head
authoralbIN7 <aantony@redhat.com>
Tue, 6 Aug 2019 15:48:43 +0000 (21:18 +0530)
committeralbIN7 <aantony@redhat.com>
Tue, 6 Aug 2019 15:48:43 +0000 (21:18 +0530)
Signed-off-by: Albin Antony <aantony@redhat.com>
s3tests_boto3/functional/test_s3.py

index 6c306ed9a38af66dc7b3b55834b0a3a0049755bd..878e46fbf1b820b0d0d57d772d6e7693ead38ca0 100644 (file)
@@ -1348,18 +1348,6 @@ def test_bucket_list_marker_none():
     response = client.list_objects(Bucket=bucket_name)
     eq(response['Marker'], '')
 
-@attr(resource='bucket')
-@attr(method='get')
-@attr(operation='list all keys with list-objects-v2')
-@attr(assertion='no pagination, no continuationtoken')
-@attr('list-objects-v2')
-def test_bucket_listv2_continuationtoken_none():
-    key_names = ['bar', 'baz', 'foo', 'quxx']
-    bucket_name = _create_objects(keys=key_names)
-    client = get_client()
-
-    response = client.list_objects_v2(Bucket=bucket_name)
-    eq(response['ContinuationToken'], '')
 
 @attr(resource='bucket')
 @attr(method='get')