Skip to content

Commit

Permalink
Fix error in test description.
Browse files Browse the repository at this point in the history
  • Loading branch information
JSAssassin committed May 13, 2024
1 parent bae71f1 commit e694e64
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: sonic-connect-github-actions
name: sonic-connect github actions

on: [push]

Expand Down
2 changes: 1 addition & 1 deletion tests/users-api.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ describe('API /users', () => {
expect(status).toBe(401);
expect(message).toContain('You are not logged in.');
});
test('should error if user tries to access the route with JWT of a user.' +
test('should error if user tries to access the route with JWT of a user ' +
'that does not exist in the DB.', async () => {
const nonExistentUserId = (new ObjectId()).toString();
const token = await jwt.sign({
Expand Down

0 comments on commit e694e64

Please sign in to comment.