fix: bump history limits to 100k so all-time shows full dataset

This commit is contained in:
2026-08-09 17:41:14 +07:00
parent bbbf548d66
commit 9f26b32c86
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -42,7 +42,7 @@ def test_history_rejects_excessive_limit():
history = PostgresHistory.__new__(PostgresHistory)
try:
history.station_history("P.1", datetime.datetime.now(), datetime.datetime.now(), 10001)
history.station_history("P.1", datetime.datetime.now(), datetime.datetime.now(), 100001)
except ValueError as error:
assert "limit" in str(error)
else: