Skip to content

Commit

Permalink
fix: hotfix for update artist test
Browse files Browse the repository at this point in the history
  • Loading branch information
AlreadyBored authored and mserykh committed Jul 14, 2022
1 parent 85ce308 commit 33d559a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/artists.e2e-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ describe('artist (e2e)', () => {
const { id: updatedId, name, grammy } = updateResponse.body;

expect(name).toBe(createArtistDto.name);
expect(grammy).toBe(createArtistDto.grammy);
expect(grammy).toBe(false);
expect(validate(updatedId)).toBe(true);
expect(createdId).toBe(updatedId);

Expand Down

0 comments on commit 33d559a

Please sign in to comment.