Changeset 61370 for trunk/tests/phpunit/tests/pluggable/wpMail.php
- Timestamp:
- 12/11/2025 11:47:08 PM (6 months ago)
- File:
-
- 1 edited
-
trunk/tests/phpunit/tests/pluggable/wpMail.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/pluggable/wpMail.php
r61352 r61370 667 667 668 668 $mailer = tests_retrieve_phpmailer_instance(); 669 $this->assert Equals( 'quoted-printable', $mailer->Encoding );669 $this->assertSame( 'quoted-printable', $mailer->Encoding ); 670 670 671 671 wp_mail( WP_TESTS_EMAIL, 'A follow up short email', 'Short email' ); 672 672 673 673 $mailer = tests_retrieve_phpmailer_instance(); 674 $this->assert Equals( '7bit', $mailer->Encoding );674 $this->assertSame( '7bit', $mailer->Encoding ); 675 675 } 676 676
Note: See TracChangeset
for help on using the changeset viewer.