Skip to content

Commit 82b87f6

Browse files
authored
Tests: Remove an unused local variable
Closes gh-4769
1 parent a22b43b commit 82b87f6

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/middleware-mockserver.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -280,8 +280,7 @@ function MockserverMiddlewareFactory() {
280280
* @param {Function} next Continue request handling
281281
*/
282282
return function( req, resp, next ) {
283-
var method = req.method,
284-
parsed = url.parse( req.url, /* parseQuery */ true ),
283+
var parsed = url.parse( req.url, /* parseQuery */ true ),
285284
path = parsed.pathname.replace( /^\/base\//, "" ),
286285
query = parsed.query,
287286
subReq = Object.assign( Object.create( req ), {

0 commit comments

Comments
 (0)