Skip to content

Commit 00b3389

Browse files
committed
Fix typo space in test
1 parent 35a78b4 commit 00b3389

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

admin/src/utils/__tests__/trim-slashes.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ describe('trimSlashes', () => {
55
const input1 = '/foo/bar/';
66
const input2 = '/foo/bar';
77
const input3 = 'foo/bar/';
8-
const output = ` foo/bar`;
8+
const output = 'foo/bar';
99
const result1 = trimSlashes(input1);
1010
const result2 = trimSlashes(input2);
1111
const result3 = trimSlashes(input3);

0 commit comments

Comments
 (0)