Skip to content
This repository was archived by the owner on Mar 12, 2025. It is now read-only.

Commit d878681

Browse files
Fix test failing
1 parent e6a22ec commit d878681

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/SubmissionApi.test.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,8 @@ describe('Submission API Tests', () => {
274274
should.equal(res.body.memberId, memberId)
275275
should.equal(res.body.challengeId, challengeId)
276276
should.equal(res.body.fileType, 'zip')
277-
should.equal(res.body.url, url)
277+
// should.equal(res.body.url, url) Can't test if url matches because url changes after AV processor is done with its task
278+
should.exist(res.body.url)
278279
})
279280

280281
it(`failure - Get submission with not found id`, async () => {

0 commit comments

Comments
 (0)