Skip to content

Commit

Permalink
test(prism-agent): fix e2e tests
Browse files Browse the repository at this point in the history
Signed-off-by: Benjamin Voiturier <[email protected]>
  • Loading branch information
bvoiturier committed Feb 14, 2024
1 parent be767d6 commit 499fe61
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ case class CredentialJsonSchemaSerDesV1(
$id: Option[String],
description: Option[String],
properties: Json,
required: Set[String],
required: Option[Set[String]],
additionalProperties: Option[Boolean]
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ data class JsonSchema(
@SerializedName("\$schema")
var schema: String = "",

@SerializedName("\$description")
@SerializedName("description")
var description: String = "",

@SerializedName("type")
Expand Down

0 comments on commit 499fe61

Please sign in to comment.