Python: missing result was fixed

This commit is contained in:
Rasmus Lerchedahl Petersen
2023-08-08 12:14:57 +02:00
parent b2688bba7d
commit f33aff42ad

View File

@@ -17,6 +17,6 @@ Since PEP 420 was accepted in Python 3, this test is Python 3 only.
from foo.bar.a import afunc
from foo_explicit.bar.a import explicit_afunc
afunc() # $ MISSING: pt,tt=afunc
afunc() # $ pt,tt="foo/bar/a.py:afunc"
explicit_afunc() # $ pt,tt="foo_explicit/bar/a.py:explicit_afunc"