-
Notifications
You must be signed in to change notification settings - Fork 645
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
Fix tests #1273
Fix tests #1273
Conversation
core/src/test/java/tech/tablesaw/aggregate/AggregateFunctionsTest.java
Outdated
Show resolved
Hide resolved
Can you rebase this PR to make sure the formatter runs against it now that the formatter's been fixed? |
I rebased it without issue in local, but the new formatter gives me an error related to jvm version with both eclipse and command line. I need to see how to fix this before any other contribution. |
Hmm. That's too bad. I have Java 11 installed for java and javac. What version do you have? I'd hate if it's causing issues for everyone who wants to contribute |
I'm using java 17 for command line, and latest eclipse requires (and provides) java 21. The issue happens for java 16+, see https://github.com/Cosium/git-code-format-maven-plugin?tab=readme-ov-file#jdk-16-peculiarities. The recommended configuration solves the issue. This should be documented somewhere for contributors using java 16+. |
Rebased, commit hooks ran, and force-pushed. Should be fine now. |
Agreed. Is this something we can update in the |
You have to add jvm options to maven, typically in the |
I wonder if we can just add that file and leave it uncommented. Hopefully it won't have any ill effects for Java 11 users. I could test that if you share the file |
I'll make a PR like you suggest, if it does not work with java 11 we will explore other options |
Done in #1280. It did not make the builds with java 11 fail, but I would be more confident if you test it in local. |
Thanks for contributing.
Description
DataFrameJoinerTest.leftOuterEmptyLeftTable
to useJoinType.LEFT_OUTER
instead of the default INNER - inner join is tested ininnerJoinEmptyLeftTable
AggregateFunctionsTest.testMultipleColumnTypes
andDoubleArraysTest.testTo2dArray
Testing
Did you add a unit test?