From 2ab599fdd1bb5c1706e176fa0126ae682864597a Mon Sep 17 00:00:00 2001 From: Amir Jafarian Date: Thu, 28 Jul 2016 11:29:25 -0400 Subject: [PATCH] Avoid calling deprecated methds *Avoid calling deprecated `getHttpMethod` and `getFullPath` --- test/remoting.integration.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/remoting.integration.js b/test/remoting.integration.js index 5154bb47..f047f7b3 100644 --- a/test/remoting.integration.js +++ b/test/remoting.integration.js @@ -99,9 +99,9 @@ describe('remoting - integration', function() { ')', formatReturns(m), ' ', - m.getHttpMethod(), + m.getEndpoints()[0].verb, ' ', - m.getFullPath() + m.getEndpoints()[0].fullPath ].join(''); }