diff --git a/examples/hello-world/index.js b/examples/hello-world/index.js index 8c1855c2eb7..a65349e6c17 100644 --- a/examples/hello-world/index.js +++ b/examples/hello-world/index.js @@ -5,7 +5,7 @@ var express = require('../../'); var app = module.exports = express() app.get('/', function(req, res){ - res.send('Hello World'); + res.send('Hello World !!!!!!!'); }); /* istanbul ignore next */