From d0fefedb8dc582c2947821d90e598b7c4d4fd173 Mon Sep 17 00:00:00 2001 From: mexiqq Date: Wed, 10 Dec 2014 00:30:13 +0800 Subject: [PATCH] modify --- lesson8/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lesson8/README.md b/lesson8/README.md index ca533a3..06dfc5d 100644 --- a/lesson8/README.md +++ b/lesson8/README.md @@ -224,7 +224,7 @@ describe('test/app.test.js', function () { ```js var supertest = require('supertest'); var app = express(); - var agent = superagent.agent(app); + var agent = supertest.agent(app); agent.post('login').end(...); // then ..