fix: update test limit boundary to match new 10k ceiling

This commit is contained in:
2026-08-09 17:13:51 +07:00
parent abfac1d3bb
commit c00a26402a
+1 -1
View File
@@ -42,7 +42,7 @@ def test_history_rejects_excessive_limit():
history = PostgresHistory.__new__(PostgresHistory) history = PostgresHistory.__new__(PostgresHistory)
try: try:
history.station_history("P.1", datetime.datetime.now(), datetime.datetime.now(), 5001) history.station_history("P.1", datetime.datetime.now(), datetime.datetime.now(), 10001)
except ValueError as error: except ValueError as error:
assert "limit" in str(error) assert "limit" in str(error)
else: else: