diff options
author | Mike Morris <michael.patrick.morris@gmail.com> | 2014-07-17 17:58:29 -0400 |
---|---|---|
committer | Mike Morris <michael.patrick.morris@gmail.com> | 2014-07-17 17:58:29 -0400 |
commit | 4d4fd3155c9d649628f776ed298d3812f363b354 (patch) | |
tree | 87ff484fba098e23afc170f3a013c220cc4bcf11 /bin | |
parent | 4b9e299d06fa2cb4232e4edbec74da48701fc740 (diff) | |
download | qtlocation-mapboxgl-4d4fd3155c9d649628f776ed298d3812f363b354.tar.gz |
update test fixtures
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/fuzz-functions.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/fuzz-functions.js b/bin/fuzz-functions.js index 26a079d6d8..68f57a35d4 100755 --- a/bin/fuzz-functions.js +++ b/bin/fuzz-functions.js @@ -11,7 +11,7 @@ module.exports = function() { json.constants = Object.keys(json.constants).reduce(function(obj, key, index) { var value = json.constants[key]; - if (typeof value === 'object' && value.hasOwnProperty('fn')) { + if (typeof value === 'object' && value.hasOwnProperty('stops')) { var mutator = fuzzer.mutate.object(value); obj[key] = mutator(); } |