Changeset 54791
- Timestamp:
- 11/10/2022 01:05:57 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/multisite/site.php
r54760 r54791 688 688 689 689 /** 690 * Tests returning the appropriate response for a invalid id given.690 * Tests returning an empty string for a non-existing ID. 691 691 */ 692 692 public function test_get_blogaddress_by_id_with_invalid_id() { 693 $blogaddress = get_blogaddress_by_id( 42);693 $blogaddress = get_blogaddress_by_id( PHP_INT_MAX ); 694 694 $this->assertSame( '', $blogaddress ); 695 695 }
Note: See TracChangeset
for help on using the changeset viewer.