iterator tests added

This commit is contained in:
Clemens Schwaighofer
2025-10-24 16:36:42 +09:00
parent d642a13b6e
commit fb4fdb6857
9 changed files with 1640 additions and 25 deletions

View File

@@ -449,7 +449,7 @@ class TestConvertTimestamp:
# Verify parts are in correct order
parts = result.split()
# Extract units properly: last 1-2 chars that are letters
units = []
units: list[str] = []
for p in parts:
if p.endswith('ms'):
units.append('ms')