diff --git a/lighthouse-cli/test/fixtures/static-server.js b/lighthouse-cli/test/fixtures/static-server.js index ed35d9a151d9..68c133deb1cd 100644 --- a/lighthouse-cli/test/fixtures/static-server.js +++ b/lighthouse-cli/test/fixtures/static-server.js @@ -64,7 +64,7 @@ function requestHandler(request, response) { function fsExistsCallback(fileExists) { if (!fileExists) { - return sendResponse(404, `404 - File not found. ${absoluteFilePath}`); + return sendResponse(404, `404 - File not found. ${filePath}`); } fs.readFile(absoluteFilePath, 'binary', readFileCallback); }