Skip to content

Commit e5a3632

Browse files
committed
Fix formatting
1 parent 3c41001 commit e5a3632

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

src/WebAssert.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,11 @@ public function responseHeaderMatches($name, $regex)
236236
public function responseHeaderNotMatches($name, $regex)
237237
{
238238
$actual = $this->session->getResponseHeader($name);
239-
$message = sprintf('The pattern "%s" was found in the text of the "%s" response header, but it should not.', $regex, $name);
239+
$message = sprintf(
240+
'The pattern "%s" was found in the text of the "%s" response header, but it should not.',
241+
$regex,
242+
$name
243+
);
240244

241245
$this->assert(!preg_match($regex, $actual), $message);
242246
}

0 commit comments

Comments
 (0)