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
cc @jackdingilian
The use of EqualsTester added in 25218e8 is incorrect:
EqualsTester
java-bigtable/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/common/TypeTest.java
Lines 123 to 129 in 25218e8
There needs to be a terminal call to testEquals() for the equals tester to do anything, that assertion is not currently being run.
testEquals()
This issue was found by https://errorprone.info/bugpattern/MissingTestCall
The text was updated successfully, but these errors were encountered:
fix: add missing call to EqualsTester#testEquals
c7eeef6
Fixes googleapis#2292
8b49f9c
Successfully merging a pull request may close this issue.
cc @jackdingilian
The use of
EqualsTester
added in 25218e8 is incorrect:java-bigtable/google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/common/TypeTest.java
Lines 123 to 129 in 25218e8
There needs to be a terminal call to
testEquals()
for the equals tester to do anything, that assertion is not currently being run.This issue was found by https://errorprone.info/bugpattern/MissingTestCall
The text was updated successfully, but these errors were encountered: