Skip to content

Commit

Permalink
changed http to https in tests for SonarCloud
Browse files Browse the repository at this point in the history
  • Loading branch information
KLee954 committed Sep 30, 2024
1 parent afc82e9 commit 7a15e52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jest.setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -380,15 +380,15 @@ const mockDataServices: MockDataServices = {
ok: true,
status: 201,
statusText: 'CREATED',
url: 'http://fakedomain.com:5000/userId/topicId/studentAlgorithm'
url: 'https://fakedomain.com:5000/userId/topicId/studentAlgorithm'
})
),
postTeacherLpLeAlg: jest.fn(() =>
Promise.resolve({
ok: true,
status: 201,
statusText: 'CREATED',
url: 'http://fakedomain.com:5000/userId/topicId/teacherAlgorithm'
url: 'https://fakedomain.com:5000/userId/topicId/teacherAlgorithm'
})
),
fetchNews: jest.fn(() =>
Expand Down

0 comments on commit 7a15e52

Please sign in to comment.