Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import groovy.transform.ToString
class IxDiag {

String pbsv
String pbsp
String pbjsv
String multipleSiteIds
}
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ class PBSUtils implements ObjectMapperWrapper {
}
}

static BigDecimal getRandomPrice(int min = 0, int max = 10, int scale = 3) {
static BigDecimal getRandomPrice(int min = 1, int max = 10, int scale = 3) {
getRandomDecimal(min, max).setScale(scale, HALF_UP)
}

Expand Down
Loading