Skip to content

Commit 82044e6

Browse files
committed
preserve key case for DiscreteValidator
1 parent db91c1b commit 82044e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

models/validators/DiscreteValidator.cfc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,8 @@ component accessors="true" singleton {
107107
var error = validationResult
108108
.newError( argumentCollection = args )
109109
.setErrorMetadata( {
110-
operation : operation,
111-
operationValue : operationValue
110+
'operation' : operation,
111+
'operationValue' : operationValue
112112
} );
113113
validationResult.addError( error );
114114
}

0 commit comments

Comments
 (0)