mirror of
https://github.com/OpenBankProject/OBP-API.git
synced 2026-02-06 15:27:01 +00:00
Using UUID for consumer key generation in DirectLogin test
This commit is contained in:
parent
efabba240f
commit
b9c4c3130a
@ -36,8 +36,6 @@ To compile and run jetty, install Maven 3 and execute:
|
||||
|
||||
./mvn.sh jetty:run
|
||||
|
||||
|
||||
|
||||
## To run with IntelliJ IDEA
|
||||
|
||||
* Make sure you have the IntelliJ Scala plugin installed.
|
||||
@ -82,6 +80,11 @@ To compile and run jetty, install Maven 3 and execute:
|
||||
set bank_account_creation_listener=false in test.default.props
|
||||
|
||||
|
||||
## Other ways to run tests
|
||||
|
||||
* See http://www.scalatest.org/user_guide
|
||||
|
||||
|
||||
----
|
||||
|
||||
## Ubuntu
|
||||
|
||||
@ -15,8 +15,8 @@ import code.api.DirectLogin.registeredApplication
|
||||
|
||||
class directloginTest extends ServerSetup {
|
||||
|
||||
val KEY = randomString(20)
|
||||
val SECRET = randomString(20)
|
||||
val KEY = java.util.UUID.randomUUID.toString
|
||||
val SECRET = java.util.UUID.randomUUID.toString
|
||||
val EMAIL = randomString(10)
|
||||
val PASSWORD = randomString(20)
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user