aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtests/write_file/write_file_tests.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/write_file/write_file_tests.sh b/tests/write_file/write_file_tests.sh
index 247c696..0f48ca0 100755
--- a/tests/write_file/write_file_tests.sh
+++ b/tests/write_file/write_file_tests.sh
@@ -52,8 +52,8 @@ function test_write_empty_text() {
function test_write_nonempty_text() {
cat "$(rlocation bazel_skylib/tests/write_file/out/nonempty.txt)" >"$TEST_log"
- expect_log '^aaa$'
- expect_log '^bbb$'
+ expect_log '^aaa'
+ expect_log '^bbb'
}
function test_write_empty_bin() {
@@ -62,7 +62,7 @@ function test_write_empty_bin() {
function test_write_nonempty_bin() {
cat "$(rlocation bazel_skylib/tests/write_file/nonempty-bin-out.txt)" >"$TEST_log"
- expect_log '^potato$'
+ expect_log '^potato'
}
run_suite "write_file_tests test suite"