Browse Source

fix message

utsushiiro 6 years ago
parent
commit
ab6c4fa597
1 changed files with 2 additions and 2 deletions
  1. 2 2
      packages/growi-commons/src/test/util/path-utils.test.js

+ 2 - 2
packages/growi-commons/src/test/util/path-utils.test.js

@@ -5,11 +5,11 @@ const pathUtils = require('@src/util/path-utils');
 
 describe('page-utils', () => {
   describe('.normalizePath', () => {
-    test('should return root path with empty string', () => {
+    test('should return the root path with empty string', () => {
       expect(pathUtils.normalizePath('')).toBe('/');
     });
 
-    test('should return the root page as is', () => {
+    test('should return the root path as is', () => {
       expect(pathUtils.normalizePath('/')).toBe('/');
     });