1
0
mirror of https://github.com/tomav/docker-mailserver.git synced 2024-06-20 06:26:54 +02:00

tests: Fix typo in common.bash (#2665)

Co-authored-by: Brennan Kinney <5098581+polarathene@users.noreply.github.com>
This commit is contained in:
Ikko Ashimine 2022-06-28 20:36:57 +09:00 committed by GitHub
parent 2a590113fd
commit b671329de5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,7 +21,7 @@ function repeat_until_success_or_timeout {
fi
if ! [[ "${1}" =~ ^[0-9]+$ ]]; then
echo "First parameter for timeout must be an integer, recieved \"${1}\""
echo "First parameter for timeout must be an integer, received \"${1}\""
return 1
fi
@ -50,7 +50,7 @@ function repeat_until_success_or_timeout {
# @param ... test command to run
function run_until_success_or_timeout {
if ! [[ ${1} =~ ^[0-9]+$ ]]; then
echo "First parameter for timeout must be an integer, recieved \"${1}\""
echo "First parameter for timeout must be an integer, received \"${1}\""
return 1
fi