Skip to content

Commit deed88e

Browse files
committed
Fix error message
1 parent 8b60c94 commit deed88e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

validation/configurationValidation.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,9 @@ function assertInitBenchmark {
100100
assertConfigurationFileExist "initBenchmark.sh"
101101

102102
source $CONFIGURATION_PATH/initBenchmark.sh
103-
[ "$?" != "0" ] && exitScript "File init_benchmark.sh could not be included."
103+
[ "$?" != "0" ] && exitScript "File .phpbenchmarks/initBenchmark.sh could not be included."
104104

105105
type initBenchmark &>/dev/null
106-
[ "$?" != "0" ] && exitScript "Function init_benchmark.sh::initBenchmark() does not exist. See README.md for more informations."
106+
[ "$?" != "0" ] && exitScript "Function .phpbenchmarks/initBenchmark.sh::initBenchmark() does not exist. See README.md for more informations."
107107
echoValidatedTest "[.phpbenchmarks/initBenchmark.sh] Function initBenchmark() exist."
108108
}

0 commit comments

Comments
 (0)