Skip to content

Commit

Permalink
Restores Camera Zoom completed test
Browse files Browse the repository at this point in the history
  • Loading branch information
astivi committed Jul 3, 2024
1 parent 5e29fbd commit 781293e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,11 @@ void main() {
},
verify: (game, _) async {
final cameraZoom = game.descendants().whereType<CameraZoom>().single;
final completed = cameraZoom.completed;
game.update(10);
game.update(0);

expect(cameraZoom.completed, completes);
expect(completed, completes);
},
);
});
Expand Down

0 comments on commit 781293e

Please sign in to comment.