We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
/** * Tests that get_instructor_list() returns the expected output. * * @return void */ public function test_get_instructor_list(): void { // Arrange. // Act. $response = $this->instance->get_instructor_list( new WP_REST_Request() ); // Assert. if ( is_wp_error( $response ) ) { $this->fail( $response->get_error_message() ); } if ( ! $response instanceof WP_REST_Response ) { $this->fail( 'Something caused neither a WP_Error or a WP_REST_Response object to be returned' ); } }
Will currently result in this:
Somehow, that tab is being converted to spaces and causing a misalignment. Need to investigate further.
Note: This happens both on v1.1.1 and v1.1.2 and possibly older versions. This may have always been an issue.
v1.1.1
v1.1.2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Will currently result in this:
Somehow, that tab is being converted to spaces and causing a misalignment. Need to investigate further.
Note: This happens both on
v1.1.1
andv1.1.2
and possibly older versions. This may have always been an issue.The text was updated successfully, but these errors were encountered: