From 455f819ec0f9fa27c97a911cedbf7443ff33e19d Mon Sep 17 00:00:00 2001 From: Andrew Wood Date: Wed, 13 Sep 2023 23:04:31 +0100 Subject: [PATCH] Corrected error report messages. --- tests/Integrity_-_Large_file_support.test | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Integrity_-_Large_file_support.test b/tests/Integrity_-_Large_file_support.test index ef085a4..b31353b 100755 --- a/tests/Integrity_-_Large_file_support.test +++ b/tests/Integrity_-_Large_file_support.test @@ -42,7 +42,7 @@ if ! test "${bytesTransferred}" -eq "${fileSize}"; then exit 1 fi if ! test "${bytesReported}" -eq "${fileSize}"; then - echo "counted ${bytesTransferred} of ${fileSize} bytes" + echo "counted ${bytesReported} of ${fileSize} bytes" exit 1 fi @@ -56,7 +56,7 @@ if ! test "${bytesTransferred}" -eq "${fileSize}"; then exit 1 fi if ! test "${bytesReported}" -eq "${fileSize}"; then - echo "stdin - counted ${bytesTransferred} of ${fileSize} bytes" + echo "stdin - counted ${bytesReported} of ${fileSize} bytes" exit 1 fi