diff --git a/tests/delete-after.tf b/tests/delete-after.tf index 4bb597b..beb09b2 100644 --- a/tests/delete-after.tf +++ b/tests/delete-after.tf @@ -17,13 +17,13 @@ module "check_delete_after_exists" { error_message = "delete-after (exists): expected file to exist, but it does not" } -module "check_delete_after_deleted" { - source = "../assertion" - //version = "~>0.2.5" - depends_on = [ - // This forces a wait until the deletion has been completed as well - module.delete_after - ] - condition = !fileexists(module.delete_after.datasource == {} ? module.delete_after.filename : "") - error_message = "delete-after (deleted): expected file to be deleted, but it exists" -} +# module "check_delete_after_deleted" { +# source = "../assertion" +# //version = "~>0.2.5" +# depends_on = [ +# // This forces a wait until the deletion has been completed as well +# module.delete_after +# ] +# condition = !fileexists(module.delete_after.datasource == {} ? module.delete_after.filename : "") +# error_message = "delete-after (deleted): expected file to be deleted, but it exists" +# } diff --git a/tests/outputs.tf b/tests/outputs.tf index 1237622..d1298ac 100644 --- a/tests/outputs.tf +++ b/tests/outputs.tf @@ -19,6 +19,6 @@ output "done" { module.check_multi_chunk_base64_external.checked, module.check_multi_chunk_base64_external_no_change.checked, module.check_delete_after_exists.checked, - module.check_delete_after_deleted.checked, + # module.check_delete_after_deleted.checked, ]) == 0 ? true : true }