Changeset 57987 for trunk/tests/phpunit/tests/user.php
- Timestamp:
- 04/12/2024 05:45:23 PM (10 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/user.php
r56746 r57987 1492 1492 $this->assertSame( $new_email, $recipient->address, 'Admin email change notification recipient not as expected' ); 1493 1493 1494 // Assert that HTML entit es have been decode in body and subject.1494 // Assert that HTML entities have been decode in body and subject. 1495 1495 $this->assertStringContainsString( '\'Test\' blog\'s "name" has <html entities> &', $email->subject, 'Email subject does not contain the decoded HTML entities' ); 1496 1496 $this->assertStringNotContainsString( ''Test' blog's "name" has <html entities> &', $email->subject, $email->subject, 'Email subject does contains HTML entities' ); … … 1795 1795 $this->assertSame( 'new-email@test.dev', $recipient->address, 'User email change confirmation recipient not as expected' ); 1796 1796 1797 // Assert that HTML entit es have been decoded in body and subject.1797 // Assert that HTML entities have been decoded in body and subject. 1798 1798 $this->assertStringContainsString( '\'Test\' blog\'s "name" has <html entities> &', $email->subject, 'Email subject does not contain the decoded HTML entities' ); 1799 1799 $this->assertStringNotContainsString( ''Test' blog's "name" has <html entities> &', $email->subject, 'Email subject does contains HTML entities' );
Note: See TracChangeset
for help on using the changeset viewer.