File tree 1 file changed +3
-5
lines changed
1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ public function getMessage()
73
73
return $ message ;
74
74
}
75
75
76
- public function isWindows ()
76
+ private function isWindows ()
77
77
{
78
78
return $ this ->operating_system === 'WIN ' ;
79
79
}
@@ -263,12 +263,10 @@ public function testDoNotAllowMessageWithoutToAndCcAndBccHeaders()
263
263
}
264
264
265
265
/**
266
- * @see @see https://github.com/laminas/laminas-mail/issues/19
266
+ * @see https://github.com/laminas/laminas-mail/issues/19
267
267
*/
268
268
public function testHeadersToAndSubjectAreNotDuplicated ()
269
269
{
270
- $ lineBreak = $ this ->isWindows () ? "\r\n" : "\n" ;
271
-
272
270
$ message = new Message ();
273
271
$ message
274
272
@@ -282,6 +280,6 @@ public function testHeadersToAndSubjectAreNotDuplicated()
282
280
$ this ->assertEquals ('Greetings and Salutations! ' , $ this ->subject );
283
281
284
282
$ this ->assertNotRegExp ('/^To: matthew\@example\.org$/m ' , $ this ->additional_headers );
285
- $ this ->assertNotRegExp ('/^Subject: Greetings and Salutations\ !$/m ' , $ this ->additional_headers );
283
+ $ this ->assertNotRegExp ('/^Subject: Greetings and Salutations!$/m ' , $ this ->additional_headers );
286
284
}
287
285
}
You can’t perform that action at this time.
0 commit comments