summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDieter Plaetinck <dieter@plaetinck.be>2009-07-29 23:18:43 +0200
committerDieter Plaetinck <dieter@plaetinck.be>2009-07-29 23:18:43 +0200
commite558f9170096e2e397f18d13b75d8facf02e10eb (patch)
tree3f9f1761de2bcbbd6f6955e7ff1e656d4fe325b2 /tests
parent42afcc1aabf26d6e9f3ae231082014698f50154d (diff)
fix some invalid show_warning invocations
Diffstat (limited to 'tests')
-rw-r--r--tests/runtime/automatic-reuse-fs-sda/profile6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/runtime/automatic-reuse-fs-sda/profile b/tests/runtime/automatic-reuse-fs-sda/profile
index 74d9b57..b2f93d7 100644
--- a/tests/runtime/automatic-reuse-fs-sda/profile
+++ b/tests/runtime/automatic-reuse-fs-sda/profile
@@ -11,21 +11,21 @@ worker_prepare_disks ()
then
infofy "disk processing ok"
else
- show_warning "PROCESSING FAILED"
+ show_warning 'disks processing' "PROCESSING FAILED"
return 1
fi
if rollback_filesystems
then
infofy "rollback ok"
else
- show_warning "ROLLBACK FAILED"
+ show_warning 'disks rollback' "ROLLBACK FAILED"
return 1
fi
if process_filesystems
then
infofy "disk processing ok"
else
- show_warning "PROCESSING FAILED"
+ show_warning 'disk processing' "PROCESSING FAILED"
return 1
fi
}