jinmeiliao commented on a change in pull request #6835:
URL: https://github.com/apache/geode/pull/6835#discussion_r709385212
##########
File path:
geode-junit/src/main/java/org/apache/geode/test/version/VersionManager.java
##########
@@ -143,6 +143,14 @@ public String getInstall(String version) {
return unmodifiableList(testVersions);
}
+ public List<String> getVersionsLaterThanAndEqualTo(String version) {
+ checkForLoadFailure();
+ List<String> result = new ArrayList<>(testVersions);
+ result.removeIf(s -> TestVersion.compare(s, version) < 0);
+ result.add(CURRENT_VERSION);
Review comment:
Yeah, that's true, but it's test code, hopefully the tester would know
they passed in something invalid.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]