Skip to content

Commit

Permalink
fix use tripple equal operator
Browse files Browse the repository at this point in the history
  • Loading branch information
aledesma-godaddy committed Nov 6, 2023
1 parent cb15774 commit 0162e9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .dev/tests/phpunit/includes/test-coblocks-block-assets.php
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public function test_editor_assets_scripts() {
foreach( $files as $file ) {
$dist_script = pathinfo( $file, PATHINFO_FILENAME );

if ( $dist_script == 'coblocks-plugin-deactivation' ) {
if ( $dist_script === 'coblocks-plugin-deactivation' ) {
$this->assertFalse( array_key_exists( $dist_script, $wp_scripts->registered ) );
continue;
}
Expand Down

0 comments on commit 0162e9a

Please sign in to comment.