mirror of
https://github.com/hapifhir/hapi-fhir.git
synced 2025-02-16 09:55:09 +00:00
fix version Enum test
This commit is contained in:
parent
f1026f2660
commit
70a66a7063
@ -29,7 +29,7 @@ public class VersionEnumTest {
|
||||
int minor = Integer.parseInt(parts[1]);
|
||||
int patch = Integer.parseInt(parts[2]);
|
||||
|
||||
if (major >= 6 && minor >= 3) {
|
||||
if ((major == 6 && minor >= 3) || major > 6 ) {
|
||||
if (minor % 2 == 1) {
|
||||
patch = 0;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user