-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
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
Unify the integration tests of Scalar DB on X #172
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great refactoring!!!
Overall looking pretty good, but I noticed the import statements are moved probably by Intellij unexpectedly.
static final String ANY_ID_1 = "id1"; | ||
static final String ANY_ID_2 = "id2"; | ||
private final ConsensusCommitManager manager; | ||
import static org.assertj.core.api.Assertions.assertThat; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These static import statements (and normal ones) are probably moved by Intellij.
I ran java -jar google-java-format-1.7-all-deps.jar
with command-line, and they are moved back to the original location.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah yes... Since I use the Google java format plugin, I thought I followed the Google style even the import order. But it looks like the import order is not handled by the plugin... I will fix the import order for the files that are changed in this PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Thank you!
https://scalar-labs.atlassian.net/browse/DLT-8128