From 4e2122315e0026485ae449a833fc6c7f9235c16f Mon Sep 17 00:00:00 2001 From: RuiAlonso Date: Wed, 23 Mar 2022 22:23:38 +0100 Subject: [PATCH] chore: missed test saved --- test/game/components/pathway_test.dart | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/game/components/pathway_test.dart b/test/game/components/pathway_test.dart index bd2cdc8d..63e74d4d 100644 --- a/test/game/components/pathway_test.dart +++ b/test/game/components/pathway_test.dart @@ -172,8 +172,8 @@ void main() { final pathway = Pathway.ellipse( center: Vector2.zero(), width: width, - bigRadius: 150, - smallRadius: 70, + majorRadius: 150, + minorRadius: 70, ); await game.ready(); await game.ensureAdd(pathway); @@ -189,8 +189,8 @@ void main() { final pathway = Pathway.ellipse( center: Vector2.zero(), width: width, - bigRadius: 150, - smallRadius: 70, + majorRadius: 150, + minorRadius: 70, ); await game.ready(); await game.ensureAdd(pathway);