From 1904ccb8929730f82b5e0e1df18651ef19208a53 Mon Sep 17 00:00:00 2001 From: Jayanth Anala <63576478+jayanthanala@users.noreply.github.com> Date: Sun, 26 Jul 2020 00:51:26 +0530 Subject: [PATCH] Area of Rectangle Updated Area of Rectangle post route updated in test.js --- test/tests.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/tests.js b/test/tests.js index f77d81a..d49de09 100644 --- a/test/tests.js +++ b/test/tests.js @@ -135,7 +135,7 @@ describe("----------START TEST FOR app.js----------", () => { it("Checks the POST /math/areaOfRectangle", done => { chai .request(app) - .post("/math/power") + .post("/math/areaOfRectangle") .send({ param1: 3, param2: 2 }) .end((err, res) => { if (err) {