From 56dc5f3bccf1327b1b774d651e7f73e901a7d588 Mon Sep 17 00:00:00 2001 From: Waldo Jaquith Date: Tue, 26 Dec 2023 10:22:15 -0500 Subject: [PATCH] Add newlines after test errors --- deploy/tests/bills.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/deploy/tests/bills.php b/deploy/tests/bills.php index ce065d2..a99e306 100644 --- a/deploy/tests/bills.php +++ b/deploy/tests/bills.php @@ -16,25 +16,26 @@ if ($bill['number'] != 'hb1') { - echo 'Error: Bill number was ' . $bill['number'] . ', expected "hb1"'; + echo 'Error: Bill number was ' . $bill['number'] . ', expected "hb1"' . "\n"; $error = TRUE; } if ($bill['catch_line'] != 'Absentee voting; no excuse required.') { - echo 'Error: Catch line was ' . $bill['catch_line'] . ', expected "Absentee voting; no excuse required."'; + echo 'Error: Catch line was ' . $bill['catch_line'] + . ', expected "Absentee voting; no excuse required." . "\n"'; $error = TRUE; } if ($bill['chief_patron'] != 'Herring') { - echo 'Error: Chief patron was ' . $bill['chief_patron'] . ', expected "Herring"'; + echo 'Error: Chief patron was ' . $bill['chief_patron'] . ', expected "Herring"' . "\n"; $error = TRUE; } if ($bill['last_house_date'] != '1574035200') { - echo 'Error: Last house date was ' . $bill['last_house_date'] . ', expected 1574035200'; + echo 'Error: Last house date was ' . $bill['last_house_date'] . ', expected 1574035200' . "\n"; $error = TRUE; }