Skip to content

Commit 70d3b80

Browse files
committedDec 26, 2016
test: fix test-buffer-slow
Fix incorrect use of string instead of RegExp in `throws` assertions. PR-URL: #9809 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Prince John Wesley <princejohnwesley@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
1 parent 3d368d0 commit 70d3b80

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎test/parallel/test-buffer-slow.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ assert.strictEqual(SlowBuffer('string').length, 0);
5151
// should throw with invalid length
5252
assert.throws(function() {
5353
SlowBuffer(Infinity);
54-
}, 'invalid Buffer length');
54+
}, /^RangeError: Invalid typed array length$/);
5555
assert.throws(function() {
5656
SlowBuffer(-1);
57-
}, 'invalid Buffer length');
57+
}, /^RangeError: Invalid typed array length$/);
5858
assert.throws(function() {
5959
SlowBuffer(buffer.kMaxLength + 1);
60-
}, 'invalid Buffer length');
60+
}, /^RangeError: (Invalid typed array length|Array buffer allocation failed)$/);

0 commit comments

Comments
 (0)
Please sign in to comment.