From b671329de54b04004079abe1d5f5944a576ad320 Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Tue, 28 Jun 2022 20:36:57 +0900 Subject: [PATCH] tests: Fix typo in common.bash (#2665) Co-authored-by: Brennan Kinney <5098581+polarathene@users.noreply.github.com> --- test/test_helper/common.bash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_helper/common.bash b/test/test_helper/common.bash index ec626b72..821056e4 100644 --- a/test/test_helper/common.bash +++ b/test/test_helper/common.bash @@ -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