Skip to content

Commit e0b6417

Browse files
committed
Fixes missing rule bug
1 parent bc45d2b commit e0b6417

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/features/verifier/Verifier.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1209,7 +1209,7 @@ Verifier.prototype.CellAttributes = function(id, type, allowedValue, value, clau
12091209
} else {
12101210
if(type === 'integer' || type === 'long'){
12111211
this.equalSigns = [true, false];
1212-
this.intervalValues = [numericValue+1, -Infinity];
1212+
this.intervalValues = [numericValue+1, Infinity];
12131213
this.value = '>= ' + (numericValue+1).toString();
12141214
} else{
12151215
this.equalSigns = [false, false];

0 commit comments

Comments
 (0)