From a7d83df3eb9ad3abd4da9d6b5d72faf2702b7f51 Mon Sep 17 00:00:00 2001 From: Takeshi Nakatani Date: Wed, 14 Aug 2019 12:39:38 +0000 Subject: [PATCH] Fixed typo in #1129 --- test/integration-test-main.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/integration-test-main.sh b/test/integration-test-main.sh index 01caaf6..96ecb2f 100755 --- a/test/integration-test-main.sh +++ b/test/integration-test-main.sh @@ -568,13 +568,13 @@ function test_concurrent_writes { function test_open_second_fd { describe "read from an open fd" - rm_test_file secound_fd_file - RESULT=$( (echo foo ; wc -c < secound_fd_file >&2) 2>& 1>secound_fd_file) + rm_test_file second_fd_file + RESULT=$( (echo foo ; wc -c < second_fd_file >&2) 2>& 1>second_fd_file) if [ "$RESULT" -ne 4 ]; then echo "size mismatch, expected: 4, was: ${RESULT}" return 1 fi - rm_test_file secound_fd_file + rm_test_file second_fd_file } function add_all_tests {