Changeset 58235 for trunk/tests/phpunit/tests/formatting/utf8UriEncode.php
- Timestamp:
- 05/29/2024 12:20:56 PM (12 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/formatting/utf8UriEncode.php
r56536 r58235 23 23 public function test_output_is_not_longer_than_optional_length_argument( $utf8, $unused_for_this_test ) { 24 24 $max_length = 30; 25 $this->assert True( strlen( utf8_uri_encode( $utf8, $max_length ) ) <= $max_length);25 $this->assertLessThanOrEqual( $max_length, strlen( utf8_uri_encode( $utf8, $max_length ) ) ); 26 26 } 27 27
Note: See TracChangeset
for help on using the changeset viewer.