From 8db22cdaf7ee715b63da177146f1847756e3f757 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Thu, 6 Nov 2025 18:46:23 +0500 Subject: [PATCH] test_model - fix incorrect stair profile values in generation tests --- src/bonsai/test/tool/test_model.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bonsai/test/tool/test_model.py b/src/bonsai/test/tool/test_model.py index cdbedafb28..d69b2a532e 100644 --- a/src/bonsai/test/tool/test_model.py +++ b/src/bonsai/test/tool/test_model.py @@ -323,8 +323,8 @@ class TestGenerateStair2DProfile(NewFile): V(0.6, 0, 0.75), V(0.6, 0, 1.0), V(0.9, 0, 1.0), - V(0.9, 0, 0.67457), - V(0.0, 0, -0.25), + V(0.9, 0, 0.6745729), + V(0.0, 0, -0.0754271), ) edges_data = ( (0, 1), @@ -355,7 +355,7 @@ class TestGenerateStair2DProfile(NewFile): V(0.6, 0, 0.75), V(0.9, 0, 0.75), # Last tread skipped - V(0.9, 0, 0.67457), + V(0.9, 0, 0.42457), V(0.1, 0, -0.25), V(0.0, 0, -0.25), )