Test-suite: Unify string quoting in the Python sources

This commit is contained in:
Dmitry D. Chernov 2019-07-14 12:58:21 +10:00
commit fa5f519bf9
23 changed files with 146 additions and 146 deletions

View file

@ -18,10 +18,10 @@ if test4("hello") != "hello-suffix":
print test4("hello")
raise RuntimeError
if test5(4) != 'xxxx':
if test5(4) != "xxxx":
raise RuntimeError
if test6(10) != 'xxxxx':
if test6(10) != "xxxxx":
raise RuntimeError
if test7() != "Hello world!":