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

Commit 7e5d31a

Browse files
committed
test: swap expected and received images in expect statement
1 parent 0263139 commit 7e5d31a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/draw/__tests__/drawCircleOnImage.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,5 +400,5 @@ test('draw circle image with transparent color', () => {
400400
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
401401
]);
402402

403-
expect(expected).toMatchImage(received);
403+
expect(received).toMatchImage(expected);
404404
});

0 commit comments

Comments
 (0)