Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tests/test_call.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def func[*T, K: BaseTypedDict](
) -> NewProtocol[*[Member[GetName[c], int] for c in Iter[Attrs[K]]]]: ...


def test_call_1():
def test_eval_call_01():
ret = eval_call(func, a=1, b=2, c="aaa")
fmt = format_helper.format_class(ret)

Expand All @@ -40,7 +40,7 @@ def func_trivial[*T, K: BaseTypedDict](
return kwargs


def test_call_2():
def test_eval_call_02():
ret = eval_call(func_trivial, a=1, b=2, c="aaa")
fmt = format_helper.format_class(ret)

Expand All @@ -63,7 +63,7 @@ def wrapped[T](value: T) -> Wrapped[T]:
return Wrapped[T](value)


def test_call_3():
def test_eval_call_03():
ret = eval_call(wrapped, 1)
fmt = format_helper.format_class(ret)

Expand Down
Loading