Skip to content

Commit

Permalink
typecheck result layout
Browse files Browse the repository at this point in the history
  • Loading branch information
stgm committed Oct 5, 2022
1 parent f8c52ea commit 893ea64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/_typecheck.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def testMethod():
return p.returncode == 0, p.stdout

def report(output):
return 'line ' + '\n - line '.join([':'.join(i.split(':')[1:]) for i in output.splitlines()[:-1]])
return '- line ' + '\n - line '.join([':'.join(i.split(':')[1:]) for i in output.splitlines()[:-1]])

test.description = lambda: "types are specified and correctly used"
test.test = testMethod
Expand Down

0 comments on commit 893ea64

Please sign in to comment.