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
You will find some code like this:
assert( is_string( $result ) || $result === false ); if ( is_string( $result ) || $result === false ) { return $result; } return $this->error( __FUNCTION__, KICKASS_CRYPTO_ERROR_RESULT_INVALID );
The problem is we can't test the error case because the assertion blows up. So remove all such assertions.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
You will find some code like this:
The problem is we can't test the error case because the assertion blows up. So remove all such assertions.
The text was updated successfully, but these errors were encountered: