Skip to content

Commit 98a8ae1

Browse files
committed
FIxed line length
1 parent d1856dd commit 98a8ae1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/LoggerMiddlewareTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ public function testLogWithCustomMessage()
131131
Options::ERROR_LEVEL => LogLevel::ERROR,
132132
Options::URL_LEVEL => LogLevel::DEBUG,
133133
Options::MESSAGE_PRE => '[{{transaction_id}}] Sending {{request.method}} request to {{request.uri}}',
134-
Options::MESSAGE_POST => '[{{transaction_id}}] Response came back with HTTP code {{response.status_code}}',
134+
Options::MESSAGE_POST => '[{{transaction_id}}] Responded with HTTP code {{response.status_code}}',
135135
Options::IGNORE_HEADERS => [
136136
'X-Ignore-Request',
137137
'X-Ignore-Response',
@@ -176,7 +176,7 @@ public function testLogWithCustomMessage()
176176
)->shouldBeCalled();
177177
$logger->log(
178178
LogLevel::DEBUG,
179-
'[abc] Response came back with HTTP code 200',
179+
'[abc] Responded with HTTP code 200',
180180
[
181181
'transaction_id' => 'abc',
182182
'request' => [

0 commit comments

Comments
 (0)