From 9647294f7c4ed20f0dbbe0c2b607c128abd5b075 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Bajto=C5=A1?= Date: Mon, 26 Nov 2018 11:22:53 +0100 Subject: [PATCH] test: fix User test for custom token generator --- test/user.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/user.test.js b/test/user.test.js index 997030f5..4d7f2bfc 100644 --- a/test/user.test.js +++ b/test/user.test.js @@ -1501,7 +1501,7 @@ describe('User', function() { from: 'noreply@myapp.org', redirect: '/', protocol: ctx.req.protocol, - host: ctx.req.get('host'), + host: 'lb.io', // use a short hostname to avoid a line break generateVerificationToken: function(user, cb) { assert(user); assert.equal(user.email, 'bar@bat.com');