Test-suite: Unify string quoting in the Python sources
This commit is contained in:
parent
c4ad3480bd
commit
fa5f519bf9
23 changed files with 146 additions and 146 deletions
|
|
@ -2,7 +2,7 @@ from ignore_parameter import *
|
|||
|
||||
def check(a, b):
|
||||
if a != b:
|
||||
raise RuntimeError('"%s" != "%s"' % (a, b))
|
||||
raise RuntimeError("'%s' != '%s'" % (a, b))
|
||||
|
||||
check(jaguar(200, 0), "hello")
|
||||
check(lotus("foo", 1), 101)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue