Tests/LibWeb: Fix type for delay_ms property in HTTP echo server

This was mistakenly changed from int -> str in a previous commit:
08b8c88ac3
This commit is contained in:
rmg-x 2024-12-07 08:36:23 -06:00 committed by Tim Ledbetter
commit 0cd4c26ae8
Notes: github-actions[bot] 2024-12-07 15:50:07 +00:00

View file

@ -24,7 +24,7 @@ class Echo:
status: int
headers: Optional[Dict[str, str]]
body: Optional[str]
delay_ms: Optional[str]
delay_ms: Optional[int]
reason_phrase: Optional[str]