Changeset 48937 for trunk/tests/phpunit/tests/actions/callbacks.php
- Timestamp:
- 09/02/2020 12:35:36 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/actions/callbacks.php
r46586 r48937 16 16 add_action( $tag, array( 'Class', 'method' ) ); 17 17 18 $this->assert Equals( 10, has_action( $tag, array( 'Class', 'method' ) ) );18 $this->assertSame( 10, has_action( $tag, array( 'Class', 'method' ) ) ); 19 19 20 $this->assert Equals( 10, has_action( $tag, 'Class::method' ) );20 $this->assertSame( 10, has_action( $tag, 'Class::method' ) ); 21 21 } 22 22 }
Note: See TracChangeset
for help on using the changeset viewer.