-
Notifications
You must be signed in to change notification settings - Fork 168
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
Enable tests for Java 10 #4335
Enable tests for Java 10 #4335
Conversation
} finally { | ||
service.setClassLoader(classLoader); | ||
String version = System.getProperty("java.version"); | ||
if (version.startsWith("1.8")) { |
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.
Would it be nice to use Assume
to skip those tests? This will at least mark the tests skipped, not passed.
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.
Done
@@ -42,6 +42,7 @@ public void testGetSystemPropertyForDefaultPackage() | |||
System.setProperty(prop, value); | |||
DefaultDeploymentConfiguration config = new DefaultDeploymentConfiguration( | |||
clazz, new Properties()); | |||
System.out.println("WWWWWWWWWWWWWWWWWWWW"); |
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.
Debugging leftover.
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.
Done
No description provided.