@@ -219,11 +219,11 @@ class OperationBuilderTest : StringSpec({
219219 param.description shouldBe null
220220 param.required shouldBe false
221221 param.deprecated shouldBe false
222- param.allowEmptyValue shouldBe true
222+ param.allowEmptyValue shouldBe null
223223 param.`$ref` shouldBe null
224224 param.style shouldBe null
225225 param.explode shouldBe false
226- param.allowReserved shouldBe true
226+ param.allowReserved shouldBe null
227227 param.schema
228228 .also { it.shouldNotBeNull() }
229229 ?.also { it.type = " string" }
@@ -239,11 +239,11 @@ class OperationBuilderTest : StringSpec({
239239 param.description shouldBe null
240240 param.required shouldBe true
241241 param.deprecated shouldBe false
242- param.allowEmptyValue shouldBe true
242+ param.allowEmptyValue shouldBe null
243243 param.`$ref` shouldBe null
244244 param.style shouldBe null
245245 param.explode shouldBe false
246- param.allowReserved shouldBe true
246+ param.allowReserved shouldBe null
247247 param.schema
248248 .also { it.shouldNotBeNull() }
249249 ?.also { it.type = " integer" }
@@ -259,11 +259,11 @@ class OperationBuilderTest : StringSpec({
259259 param.description shouldBe null
260260 param.required shouldBe false
261261 param.deprecated shouldBe false
262- param.allowEmptyValue shouldBe true
262+ param.allowEmptyValue shouldBe null
263263 param.`$ref` shouldBe null
264264 param.style shouldBe null
265265 param.explode shouldBe false
266- param.allowReserved shouldBe true
266+ param.allowReserved shouldBe null
267267 param.schema
268268 .also { it.shouldNotBeNull() }
269269 ?.also { it.type = " boolean" }
0 commit comments