Skip to content

Commit

Permalink
Update test_runserver_serve.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreamsorcerer authored Nov 19, 2023
1 parent 6e9f84b commit a123ce2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_runserver_serve.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import json
import pathlib
import socket
from typing import Dict
from typing import Any, Dict
from unittest.mock import MagicMock

import pytest
Expand Down Expand Up @@ -115,7 +115,7 @@ def test_fmt_size_large(value, result):
assert fmt_size(value) == result


class DummyApplication(Dict[str, object]):
class DummyApplication(Dict[web.AppKey[Any], object]):
_debug = False

def __init__(self):
Expand Down

0 comments on commit a123ce2

Please sign in to comment.