We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 680aa89 commit 3b69d15Copy full SHA for 3b69d15
mypyc/test-data/run-functions.test
@@ -1334,7 +1334,7 @@ def test_star_fastpath_list() -> None:
1334
assert star_list(["a", 3]) == "aaa"
1335
def test_star_fastpath_generic() -> None:
1336
assert star_generic({"a": None, 3: None}) == "aaa"
1337
-def test_star2_fastpath() -> None
+def test_star2_fastpath() -> None:
1338
assert star2(x="a", y=3) == "aaa"
1339
-def test_star2_fastpath_generic() -> None
+def test_star2_fastpath_generic() -> None:
1340
assert star2_generic({x: "a", y: 3}) == "aaa"
0 commit comments