Prefer path over Path

This commit is contained in:
Daniel Gasienica 2018-04-06 12:40:26 -04:00
parent 8467352994
commit 2ee78ec556
2 changed files with 4 additions and 4 deletions

View file

@ -1,11 +1,11 @@
const Path = require('path');
const path = require('path');
const { assert } = require('chai');
const Privacy = require('../../js/modules/privacy');
const APP_ROOT_PATH = Path.join(__dirname, '..', '..', '..');
const APP_ROOT_PATH = path.join(__dirname, '..', '..', '..');
describe('Privacy', () => {
describe('redactPhoneNumbers', () => {