Skip to content

Commit

Permalink
Cleanup after resolving merge conflicts with develop
Browse files Browse the repository at this point in the history
  • Loading branch information
delawski authored Jul 22, 2024
1 parent c24ec47 commit d1bd648
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions tests/tests/test-class-connector.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public function setUp(): void {
*/
public $actions = array(
'simulate_fault',
'hyphenated-action',
'hyphenated-action',
);

/**
Expand Down Expand Up @@ -71,16 +71,16 @@ public function callback_simulate_fault() {
do_action( 'wp_stream_test_child_callback_simulate_fault' );
}

/**
* Log the hyphenated action callback.
*
* @action hyphenated-action
*
* @return void
*/
public function callback_hyphenated_action() {
/**
* Log the hyphenated action callback.
*
* @action hyphenated-action
*
* @return void
*/
public function callback_hyphenated_action() {
do_action( 'wp_stream_test_child_callback_hyphenated_action' );
}
}
};

$this->assertNotEmpty( $this->connector );
Expand Down Expand Up @@ -259,7 +259,6 @@ public function test_is_dependency_satisfied() {
$this->assertTrue( $this->connector->is_dependency_satisfied() );
}


/**
* Test that percentages are escaped.
*
Expand Down

0 comments on commit d1bd648

Please sign in to comment.