Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Juliette <[email protected]>
  • Loading branch information
enricobattocchi and jrfnl committed Sep 28, 2023
1 parent 279d68d commit d78fd53
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion .phpcs.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@
<!-- Don't trigger on the main file as renaming it would deactivate the plugin. -->
<property name="excluded_files_strict_check" type="array">
<element value="duplicate-post.php"/>
<!-- Don't trigger on test bootstrap files. -->
</property>

<!-- Remove the following prefixes from the names of object structures. -->
Expand Down
2 changes: 1 addition & 1 deletion phpunit-integration.xml.dist
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/7.5/phpunit.xsd"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.5/phpunit.xsd"
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="tests/integration/bootstrap.php"
Expand Down
4 changes: 2 additions & 2 deletions tests/integration/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@
}


// Load some helpful functions.
// Get access to tests_add_filter() function.
require_once $_wp_tests_dir . 'includes/functions.php';

/**
* Activates this plugin in WordPress so it can be tested.
*/
function _manually_load_plugin() {
require YOAST_DUPLICATE_POST_TEST_ROOT_DIR . '../../duplicate-post.php';
require_once YOAST_DUPLICATE_POST_TEST_ROOT_DIR . '../../duplicate-post.php';
}

tests_add_filter( 'muplugins_loaded', '_manually_load_plugin' );
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/post-duplicator-test.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@ public function test_create_duplicate() {

$id = $this->instance->create_duplicate( $post, [ 'copy_date' => true ] );

$this->assertTrue( \is_int( $id ) );
$this->assertIsInt( $id );
}
}

0 comments on commit d78fd53

Please sign in to comment.