Skip to content

Commit f894016

Browse files
committed
fixed apidoc eslint issue and testcase errors
1 parent 0f259a8 commit f894016

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

_apidoc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1593,4 +1593,4 @@
15931593
* @apiSuccess {String[]} faculty.designation Faculty member's designation.
15941594
* @apiSuccess {String} faculty.natureOfAssociation Nature of association with the institution.
15951595
* @apiSuccess {String} faculty.additionalResponsibilities Additional responsibilities of the faculty.
1596-
**/
1596+
*/

test/routes/auth.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ describe("checking user functions", () => {
3030
password: "123",
3131
emailId: "[email protected]",
3232
uid: "S1032190220",
33-
userType: "student",
33+
userType: "STUDENT",
3434
});
3535
expect(response.headers["content-type"]).toMatch(/json/);
3636
expect(response.status).toBe(200);
@@ -46,7 +46,7 @@ describe("checking auth functions", () => {
4646
password: "123",
4747
emailId: "[email protected]",
4848
uid: "S1032190220",
49-
userType: "student",
49+
userType: "STUDENT",
5050
});
5151
});
5252

0 commit comments

Comments
 (0)