Skip to content

Commit ccff1e4

Browse files
committed
Fix removal
1 parent 3fb4313 commit ccff1e4

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/functional/modules/test_zos_volume_init_func.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,7 @@ def test_guard_rail_and_setup(ansible_zos_module):
3737
hosts = ansible_zos_module
3838
hlq = get_random_q()
3939
# remove all data sets from target volume. Expected to be the following 3
40-
hosts.all.zos_data_set(name="{0}.IMS01.SPOOL1".format(hlq), state="absent")
41-
hosts.all.zos_data_set(name="{0}.IMS01.SPOOL2".format(hlq), state="absent")
42-
hosts.all.zos_data_set(name="{0}.IMS01.SPOOL3".format(hlq), state="absent")
40+
hosts.all.zos_data_set(name="*", volumes=TEST_VOL_ADDR, state="absent")
4341

4442
params = {
4543
"address":TEST_VOL_ADDR,

0 commit comments

Comments
 (0)