Browse Source

path -> paths

Kevin Sawicki 9 years ago
parent
commit
44376374b0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      spec/api-native-image-spec.js

+ 1 - 1
spec/api-native-image-spec.js

@@ -27,7 +27,7 @@ describe('nativeImage module', () => {
       assert.equal(image.getSize().width, 538);
     });
 
-    it('loads images from path with `..` segments', () => {
+    it('loads images from paths with `..` segments', () => {
       const imagePath = `${path.join(__dirname, 'fixtures', 'api')}${path.sep}..${path.sep}${path.join('assets', 'logo.png')}`;
       const image = nativeImage.createFromPath(imagePath);
       assert(!image.isEmpty());