Skip to content

Commit

Permalink
upgrade schema-kenerator 1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
SMILEY4 committed Sep 17, 2024
1 parent 2929ccc commit e002269
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ projectDeveloperUrl=https://github.com/SMILEY4
versionKtor=2.3.11
versionSwaggerUI=5.17.11
versionSwaggerParser=2.1.22
versionSchemaKenerator=1.2.1
versionSchemaKenerator=1.2.2
versionKotlinLogging=3.0.5
versionKotest=5.8.0
versionKotlinTest=1.8.21
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -219,11 +219,11 @@ class OperationBuilderTest : StringSpec({
param.description shouldBe null
param.required shouldBe false
param.deprecated shouldBe false
param.allowEmptyValue shouldBe true
param.allowEmptyValue shouldBe null
param.`$ref` shouldBe null
param.style shouldBe null
param.explode shouldBe false
param.allowReserved shouldBe true
param.allowReserved shouldBe null
param.schema
.also { it.shouldNotBeNull() }
?.also { it.type = "string" }
Expand All @@ -239,11 +239,11 @@ class OperationBuilderTest : StringSpec({
param.description shouldBe null
param.required shouldBe true
param.deprecated shouldBe false
param.allowEmptyValue shouldBe true
param.allowEmptyValue shouldBe null
param.`$ref` shouldBe null
param.style shouldBe null
param.explode shouldBe false
param.allowReserved shouldBe true
param.allowReserved shouldBe null
param.schema
.also { it.shouldNotBeNull() }
?.also { it.type = "integer" }
Expand All @@ -259,11 +259,11 @@ class OperationBuilderTest : StringSpec({
param.description shouldBe null
param.required shouldBe false
param.deprecated shouldBe false
param.allowEmptyValue shouldBe true
param.allowEmptyValue shouldBe null
param.`$ref` shouldBe null
param.style shouldBe null
param.explode shouldBe false
param.allowReserved shouldBe true
param.allowReserved shouldBe null
param.schema
.also { it.shouldNotBeNull() }
?.also { it.type = "boolean" }
Expand Down

0 comments on commit e002269

Please sign in to comment.