From 86621f217a94d2db265c12ce2a04f3a39065f8d2 Mon Sep 17 00:00:00 2001 From: Phil Booth Date: Thu, 22 Aug 2019 09:14:55 +0100 Subject: [PATCH] fix(tests): fix broken proxyquire path in redis test --- packages/fxa-auth-server/test/local/redis.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/fxa-auth-server/test/local/redis.js b/packages/fxa-auth-server/test/local/redis.js index 87739b83f68..461ec437f33 100644 --- a/packages/fxa-auth-server/test/local/redis.js +++ b/packages/fxa-auth-server/test/local/redis.js @@ -32,7 +32,7 @@ describe('lib/redis:', () => { }; fxaShared = sinon.spy(() => redis); wrapper = proxyquire(`${LIB_DIR}/redis`, { - '../../../fxa-shared/redis': fxaShared, + '../../fxa-shared/redis': fxaShared, })(config, log); });