add tests for helper classes defined by fast stack

This commit is contained in:
Julian Stirling 2025-06-27 00:34:51 +01:00
parent 05af5e7548
commit 2ce2f998fa
4 changed files with 225 additions and 3 deletions

View file

@ -63,7 +63,7 @@ class StackParams:
"Minimum number of images to test should be positive and odd"
)
if images_to_save % 2 == 0 or images_to_save <= 0:
raise ValueError("Images to svae must be positive and odd")
raise ValueError("Images to save must be positive and odd")
self.stack_dz = stack_dz
self.images_to_save = images_to_save
@ -140,7 +140,7 @@ class CaptureInfo:
"""
buffer_id: int
position: tuple[int, int, int]
position: dict[str, int]
sharpness: int
@property