Skip to content

Commit fd950b0

Browse files
committed
[Tests] always use String(x) over x.toString()
1 parent 31bcb32 commit fd950b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parse.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,7 @@ test('parse()', function (t) {
555555
result.push(parseInt(parts[1], 16));
556556
parts = reg.exec(str);
557557
}
558-
return iconv.decode(SaferBuffer.from(result), 'shift_jis').toString();
558+
return String(iconv.decode(SaferBuffer.from(result), 'shift_jis'));
559559
}
560560
}), { : '大阪府' });
561561
st.end();

0 commit comments

Comments
 (0)