Skip to content

Commit d376d43

Browse files
committed
Fix issue with invalid price in tests
1 parent f0d0636 commit d376d43

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/test/groovy/org/prebid/server/functional/util/PBSUtils.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ class PBSUtils implements ObjectMapperWrapper {
107107
}
108108
}
109109

110-
static BigDecimal getRandomPrice(int min = 0, int max = 10, int scale = 3) {
110+
static BigDecimal getRandomPrice(int min = 1, int max = 10, int scale = 3) {
111111
getRandomDecimal(min, max).setScale(scale, HALF_UP)
112112
}
113113

0 commit comments

Comments
 (0)