Changeset 48937 for trunk/tests/phpunit/tests/option/userSettings.php
- Timestamp:
- 09/02/2020 12:35:36 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/option/userSettings.php
r47122 r48937 28 28 $this->set_user_setting( 'foo', 'bar' ); 29 29 30 $this->assert Equals( 'bar', get_user_setting( 'foo' ) );30 $this->assertSame( 'bar', get_user_setting( 'foo' ) ); 31 31 } 32 32 … … 38 38 $this->set_user_setting( 'foo', 'foo-bar-baz' ); 39 39 40 $this->assert Equals( 'foo-bar-baz', get_user_setting( 'foo' ) );40 $this->assertSame( 'foo-bar-baz', get_user_setting( 'foo' ) ); 41 41 } 42 42 … … 48 48 $this->set_user_setting( 'foo', 'foo*bar*baz' ); 49 49 50 $this->assert Equals( 'foobarbaz', get_user_setting( 'foo' ) );50 $this->assertSame( 'foobarbaz', get_user_setting( 'foo' ) ); 51 51 } 52 52
Note: See TracChangeset
for help on using the changeset viewer.