Skip to content

Commit

Permalink
Merge pull request #556 from correctexam/515-migrate-comments-when-ch…
Browse files Browse the repository at this point in the history
…anging-grading-scale

last update I hope
  • Loading branch information
barais authored Jul 4, 2024
2 parents 15885df + 1d00298 commit 0ab0c91
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ describe('QuestionType Service', () => {

const req = httpMock.expectOne({ method: 'GET' });
req.flush(returnedFromService);
expect(expectedResult).toMatchObject(elemDefault);
expect(expectedResult).toMatchObject(elemDefault as any);
});

it('should create a QuestionType', () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ describe('Scan Service', () => {

const req = httpMock.expectOne({ method: 'GET' });
req.flush(returnedFromService);
expect(expectedResult).toMatchObject(elemDefault);
expect(expectedResult).toMatchObject(elemDefault as any);
});

it('should create a Scan', () => {
Expand Down

0 comments on commit 0ab0c91

Please sign in to comment.