Changeset 61370
- Timestamp:
- 12/11/2025 11:47:08 PM (2 weeks ago)
- Location:
- trunk/tests/phpunit/tests
- Files:
-
- 2 edited
-
menu/wpAjaxMenuQuickSearch.php (modified) (1 diff)
-
pluggable/wpMail.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/menu/wpAjaxMenuQuickSearch.php
r60991 r61370 193 193 194 194 $results_json = array_map( 'json_decode', $results ); 195 $this->assert Equals( 'wptests_123', $results_json[0]->post_type );195 $this->assertSame( 'wptests_123', $results_json[0]->post_type ); 196 196 } 197 197 } -
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.