Skip to content

Commit

Permalink
fix: bump version for prism-agent v1.16 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
amagyar-iohk committed Sep 19, 2023
1 parent 3e44f3f commit d68d313
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion tests/end-to-end/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ repositories {
dependencies {
testImplementation("io.iohk.atala.prism.walletsdk:atala-prism-sdk:2.3.1")
testImplementation("io.iohk.atala.prism:prism-kotlin-client:1.9.2")
testImplementation("io.iohk.atala:atala-automation:0.1.2")
testImplementation("io.iohk.atala:atala-automation:0.3.0")
}

tasks.test {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@ import io.iohk.atala.prism.models.*
import io.iohk.atala.prism.utils.Notes
import io.restassured.RestAssured
import io.restassured.builder.RequestSpecBuilder
import io.restassured.config.ObjectMapperConfig
import io.restassured.config.RestAssuredConfig
import io.restassured.mapper.ObjectMapperType
import io.restassured.response.Response
import net.serenitybdd.rest.SerenityRest
import org.apache.http.HttpStatus
Expand Down Expand Up @@ -52,9 +49,6 @@ object Environment {
.build()
SerenityRest.setDefaultRequestSpecification(requestSpecification)
}
SerenityRest.setDefaultConfig(
RestAssuredConfig.newConfig().objectMapperConfig(ObjectMapperConfig(ObjectMapperType.GSON))
)

// check if DID and schema exist
preparePublishedDid(properties.getProperty("PUBLISHED_DID"))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ class CloudAgentWorkflow {
Post.to("/connections").body(createConnection),
Ensure.thatTheLastResponse().statusCode().isEqualTo(HttpStatus.SC_CREATED)
)

cloudAgent.remember("invitation", lastResponse().get<String>("invitation.invitationUrl"))
cloudAgent.remember("connectionId", lastResponse().get<String>("connectionId"))
}
Expand Down

0 comments on commit d68d313

Please sign in to comment.