diff --git a/tests/integration/targets/aws_s3/tasks/main.yml b/tests/integration/targets/aws_s3/tasks/main.yml index 5d811ce1775..4d95c00f85d 100644 --- a/tests/integration/targets/aws_s3/tasks/main.yml +++ b/tests/integration/targets/aws_s3/tasks/main.yml @@ -442,36 +442,6 @@ that: - result is changed - - name: test create a bucket with a dot in the name - aws_s3: - bucket: "{{ bucket_name + '.bucket' }}" - mode: create - register: result - - - assert: - that: - - result is changed - - - name: test delete a bucket with a dot in the name - aws_s3: - bucket: "{{ bucket_name + '.bucket' }}" - mode: delete - register: result - - - assert: - that: - - result is changed - - - name: test delete a nonexistent bucket - aws_s3: - bucket: "{{ bucket_name + '.bucket' }}" - mode: delete - register: result - - - assert: - that: - - result is not changed - - name: make tempfile 4 GB for OSX command: _raw_params: "dd if=/dev/zero of={{ tmpdir.path }}/largefile bs=1m count=4096"