Skip to content

Commit

Permalink
(NT-72) Update test for libnut screen action
Browse files Browse the repository at this point in the history
  • Loading branch information
s1hofmann committed Mar 27, 2024
1 parent e61dcb7 commit 3e39bce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions providers/libnut/lib/libnut-screen.class.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ describe("libnut screen action", () => {
colorAt: jest.fn(),
height: screenShotSize.height,
image: Buffer.from(
new Array(screenShotSize.width * screenShotSize.height * 4 + 10).fill(
new Array(screenShotSize.width * screenShotSize.height * 4).fill(
0
)
),
Expand Down Expand Up @@ -72,7 +72,7 @@ describe("libnut screen action", () => {
colorAt: jest.fn(),
height: screenShotSize.height,
image: Buffer.from(
new Array(screenShotSize.width * screenShotSize.height * 4 + 10).fill(
new Array(screenShotSize.width * screenShotSize.height * 4).fill(
0
)
),
Expand Down

0 comments on commit 3e39bce

Please sign in to comment.