-
Notifications
You must be signed in to change notification settings - Fork 12
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
Migrate all validation related imports to Jakarta #442
Conversation
@@ -839,8 +839,8 @@ public void testEnumComplexMapping( final KnownVersion metaModelVersion ) { | |||
+ "['properties']['description']['enum'][0]" ) ).isEqualTo( "Result succeeded" ); | |||
assertThat( context.<String> read( "$['components']['schemas']['ResultGood']['properties']['details']" | |||
+ "['properties']['message']['enum'][0]" ) ).isEqualTo( "Evaluation succeeded." ); | |||
assertThat( context.<Double> read( "$['components']['schemas']['ResultGood']['properties']['details']" | |||
+ "['properties']['numericCode']['enum'][0]" ) ).isCloseTo( 10.0d, Percentage.withPercentage( 1.0d ) ); | |||
assertThat( context.<Integer> read( "$['components']['schemas']['ResultGood']['properties']['details']" |
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.
Not sure myself about this one. I wondered how this ever worked, because it was never a float/double value.
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.
Yes, the same question)
you are totally right..)
I found, that the build pipelines every time working like we expect, but in my local env I was getting this error...
But I did the same fix in my PR - #441
9b4a652
to
f6e2b13
Compare
Rebased to main |
Release v2.4.0 addresses this. |
Fixes #455