add mising semi-colon & fix return array

This commit is contained in:
Wifinigel 2023-07-23 07:42:03 +01:00
parent 3b7f9b30bd
commit cf3f613f3d
4 changed files with 10 additions and 10 deletions

View file

@ -3,7 +3,7 @@
# A simple script to perform a series of tests on a
# list of web sites.
:global Filename "ch10-07-bad-script.rsc"
:global Filename "ch10-07-bad-script.rsc";
# function to log error messages
:global LogMessageFunc do={
@ -80,7 +80,7 @@
} on-error={
$LogMessageFunc ("GetWebPageFunc: unable to retrieve site: \
$SiteName !");
:return { "*** test failed ***" }
:return { "duration"="*** test failed ***" }
}
}