From 6307cfdd266c442d860845252dae570c336fa03d Mon Sep 17 00:00:00 2001 From: "Bradley M. Kuhn" Date: Sun, 20 Dec 2015 16:59:29 -0800 Subject: [PATCH] Fix typos in the test message descriptions. --- Supporters/t/Supporters.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Supporters/t/Supporters.t b/Supporters/t/Supporters.t index bcdf65a..3258427 100644 --- a/Supporters/t/Supporters.t +++ b/Supporters/t/Supporters.t @@ -314,7 +314,7 @@ dies_ok { $fulfillRequestId = $sp->fulfillRequest( { supporterId => $drapperId, dies_ok { $fulfillRequestId = $sp->fulfillRequest( { supporterId => $drapperId, requestType => "t-shirt-small-only", how => "in-person delivery" }); } - "fulfillRequest: who not specified"; + "fulfillRequest: dies if who not specified"; lives_ok { $fulfillRequestId = $sp->fulfillRequest( { supporterId => $drapperId, requestType => "t-shirt-small-only", who => 'joe', @@ -329,7 +329,7 @@ lives_ok { $val = $sp->dbh()->selectall_hashref("SELECT id, date, who, how, requ is_deeply($val, { $fulfillRequestId => { id => $fulfillRequestId, date => $today, how => 'in-person delivery', who => 'joe', request_id => $tshirtSmallRequestId } }, - "fulfillRequest: databse etnry from successful return is correct"); + "fulfillRequest: databse entry from successful return is correct"); ok((defined $val and (keys(%$val) == 0)), "_getOrCreateRequestConfiguration: no request_configuration record added for failed attempts");