Skip to content

Commit 4749925

Browse files
committed
update test assert to simulate scenario subject not duplicated
Signed-off-by: Abdul Malik Ikhsan <[email protected]>
1 parent a6f59d4 commit 4749925

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

test/Transport/SendmailTest.php

+2-8
Original file line numberDiff line numberDiff line change
@@ -281,13 +281,7 @@ public function testHeadersToAndSubjectAreNotDuplicated()
281281
$this->assertEquals('[email protected]', $this->to);
282282
$this->assertEquals('Greetings and Salutations!', $this->subject);
283283

284-
$this->assertNotContains(
285-
286-
$this->additional_headers
287-
);
288-
$this->assertNotContains(
289-
'Subject: Greetings and Salutations!, Greetings and Salutations!' . $lineBreak,
290-
$this->additional_headers
291-
);
284+
$this->assertNotRegExp('/^To: matthew\@example\.org$/m', $this->additional_headers);
285+
$this->assertNotRegExp('/^Subject: Greetings and Salutations\!$/m', $this->additional_headers);
292286
}
293287
}

0 commit comments

Comments
 (0)