Skip to content

Commit

Permalink
feature/VRP fixed the failed test
Browse files Browse the repository at this point in the history
  • Loading branch information
hongwei1 committed Jul 29, 2024
1 parent 4b45608 commit 65142f5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Binary file modified obp-api/src/test/resources/frozen_type_meta_data
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ class VRPConsentRequestTest extends V510ServerSetup with PropsReset{
accountAccess.isDefined should equal(true)
accountAccess.get.bank_id should equal(fromAccountJson.bank_routing.address)
accountAccess.get.account_id should equal(fromAccountJson.account_routing.address)
accountAccess.get.view_id contains("_VRP-") shouldBe( true)
accountAccess.get.view_id contains("_vrp-") shouldBe( true)

setPropsValues("consumer_validation_method_for_consent"->"NONE")
val requestWhichFails = (v5_1_0_Request / "users").GET
Expand Down Expand Up @@ -190,7 +190,7 @@ class VRPConsentRequestTest extends V510ServerSetup with PropsReset{
accountAccess.isDefined should equal(true)
accountAccess.get.bank_id should equal(fromAccountJson.bank_routing.address)
accountAccess.get.account_id should equal(fromAccountJson.account_routing.address)
accountAccess.get.view_id contains("_VRP-") shouldBe( true)
accountAccess.get.view_id contains("_vrp-") shouldBe( true)


setPropsValues("consumer_validation_method_for_consent"->"NONE")
Expand Down
2 changes: 1 addition & 1 deletion obp-api/src/test/scala/code/util/FrozenClassTest.scala
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class FrozenClassTest extends ServerSetup {
} yield {
s"$version increased apis: $increasedApis"
}
increasedApis should equal(Nil)
increasedApis should equal(Nil)
}
}

Expand Down

0 comments on commit 65142f5

Please sign in to comment.