Skip to content

Commit

Permalink
Fix test assertions
Browse files Browse the repository at this point in the history
  • Loading branch information
simonhamp committed Apr 28, 2024
1 parent 7fc7de7 commit 75c6fe5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Windows/WindowTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@
$window = Window::open()->invisibleFrameless();
$windowArray = $window->toArray();

expect($windowArray['frame'])->toBeTrue();
expect($windowArray['transparent'])->toBeTrue();
expect($windowArray['frame'])->toBeFalse();
expect($windowArray['transparency'])->toBeTrue();
expect($windowArray['focusable'])->toBeFalse();
expect($windowArray['hasShadow'])->toBeFalse();
});

0 comments on commit 75c6fe5

Please sign in to comment.