Skip to content

Commit

Permalink
fixing compilation err
Browse files Browse the repository at this point in the history
  • Loading branch information
Arcadius Ahouansou committed Mar 10, 2016
1 parent eb05c55 commit b538bbe
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 @@ -13,7 +13,7 @@ object Common {
val testUsers = Integer.getInteger("test.testUsers", 1)
val warmUpUsers = Integer.getInteger("test.warmUpUsers", 1)
val rampUpDuration = Integer.getInteger("test.rampUpDuration", 1)
val pause = Integer.getInteger("test.pause", 2)
val testPause = Integer.getInteger("test.pause", 2)
val testDuration = Integer.getInteger("test.testDuration", 15)
val warmUpDuration = Integer.getInteger("test.warmUpDuration", 15)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import io.gatling.http.Predef._
class RestApiSimulation extends Simulation {
val name = getClass.getSimpleName

val scn = scenario(name).pause(pause minutes).during(testDuration minutes) {
val scn = scenario(name).pause(testPause minutes).during(testDuration minutes) {
exec(http(containerName)
.get(apiPath))
}
Expand Down

0 comments on commit b538bbe

Please sign in to comment.