Skip to content

Commit 62980a0

Browse files
committed
fix: fix failing test
1 parent be44b07 commit 62980a0

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/string/remove-last/test

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/string/remove-last/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ tape( 'the function supports removing the last `n` characters of a provided stri
359359
t.strictEqual( out, '六书/六', 'returns expected value' );
360360

361361
out = removeLast( '🌷', 1, opts );
362-
t.strictEqual( out, '\ud83c', 'returns expected value' );
362+
t.strictEqual( out, '', 'returns expected value' );
363363
t.end();
364364
});
365365

0 commit comments

Comments
 (0)