Skip to content

Commit 228b921

Browse files
committed
fix: add more tests for remove first package coverage
1 parent 7b41d50 commit 228b921

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/string/base/remove-first-code-point/test

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/string/base/remove-first-code-point/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ tape( 'the function removes the first Unicode code point of a provided string (U
7171
out = removeFirst( '𐒻𐓟', 1 );
7272
t.strictEqual( out, '𐓟', 'returns expected value' );
7373

74-
out = removeFirst( '\uDC00', 1 );
74+
out = removeFirst( '\uD800', 1 );
7575
t.strictEqual( out, '', 'returns expected value' );
7676

7777
t.end();

0 commit comments

Comments
 (0)