Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
wilmveel committed Dec 11, 2024
1 parent 3de74f9 commit 04af404
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class OpenApiV2ParserTest {
value = listOf(
Field(
identifier = FieldIdentifier("code"),
reference = Primitive(type = Primitive.Type.Integer(), isIterable = false),
reference = Primitive(type = Primitive.Type.Integer(Primitive.Type.Precision._32), isIterable = false),
isNullable = true
),
Field(
Expand Down Expand Up @@ -144,7 +144,7 @@ class OpenApiV2ParserTest {
),
Field(
identifier = FieldIdentifier("quantity"),
reference = Primitive(type = Primitive.Type.Integer(), isIterable = false),
reference = Primitive(type = Primitive.Type.Integer(Primitive.Type.Precision._32), isIterable = false),
isNullable = true
),
Field(
Expand Down Expand Up @@ -208,7 +208,7 @@ class OpenApiV2ParserTest {
),
Field(
identifier = FieldIdentifier("userStatus"),
reference = Primitive(type = Primitive.Type.Integer(), isIterable = false),
reference = Primitive(type = Primitive.Type.Integer(Primitive.Type.Precision._32), isIterable = false),
isNullable = true
)
)
Expand Down

0 comments on commit 04af404

Please sign in to comment.