Skip to content

Commit fc0fd73

Browse files
authored
Fix issue with invalid functional tests (#4172)
1 parent 3af4507 commit fc0fd73

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/test/groovy/org/prebid/server/functional/model/request/auction/IxDiag.groovy

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import groovy.transform.ToString
66
class IxDiag {
77

88
String pbsv
9+
String pbsp
910
String pbjsv
1011
String multipleSiteIds
1112
}

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)