Skip to content
This repository has been archived by the owner on Jan 2, 2024. It is now read-only.

Commit

Permalink
fix: correct IOTSF0004 error message
Browse files Browse the repository at this point in the history
  • Loading branch information
holvonixAdvay committed Aug 25, 2019
1 parent 9251714 commit e69009d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ function recordFuzzFunc<K, V>(maxCount: number) {
const kt = typeof k;
if (kt !== 'string') {
throw new Error(
'IOTSF0004: recordFuzzer cannot support non-(string, number, boolean) key types'
'IOTSF0004: recordFuzzer cannot support non-string key types'
);
}
const v = hv.encode([r.int32(), ctx]) as V;
Expand Down

0 comments on commit e69009d

Please sign in to comment.