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

Commit e69009d

Browse files
committed
fix: correct IOTSF0004 error message
1 parent 9251714 commit e69009d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ function recordFuzzFunc<K, V>(maxCount: number) {
237237
const kt = typeof k;
238238
if (kt !== 'string') {
239239
throw new Error(
240-
'IOTSF0004: recordFuzzer cannot support non-(string, number, boolean) key types'
240+
'IOTSF0004: recordFuzzer cannot support non-string key types'
241241
);
242242
}
243243
const v = hv.encode([r.int32(), ctx]) as V;

0 commit comments

Comments
 (0)