From: Reuben Thomas Date: Sat, 13 Jan 2018 08:03:20 +0000 (+0000) Subject: pytest: fix typo (French word should be English) in output X-Git-Tag: v3.7~165 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=55705e0fa8944c04c7399f8f88052791c1ad52f8;p=recode pytest: fix typo (French word should be English) in output --- diff --git a/tests/pytest b/tests/pytest index fb96697..4489592 100755 --- a/tests/pytest +++ b/tests/pytest @@ -224,7 +224,7 @@ class Main: write(u'\n' + u'=' * WIDTH + u'\n') write(u'%d. %s\n' % (ordinal, prefix)) if function and function.__name__ != os.path.basename(prefix): - write(u" Fonction %s\n" % function.__name__) + write(u" Function %s\n" % function.__name__) if arguments: for counter, argument in enumerate(arguments): write(u" Arg %d = %r\n" % (counter + 1, argument))