aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/python/reference_global_vars_runme.py
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/test-suite/python/reference_global_vars_runme.py')
-rw-r--r--Examples/test-suite/python/reference_global_vars_runme.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Examples/test-suite/python/reference_global_vars_runme.py b/Examples/test-suite/python/reference_global_vars_runme.py
index 6c2d181ac..6f86527b7 100644
--- a/Examples/test-suite/python/reference_global_vars_runme.py
+++ b/Examples/test-suite/python/reference_global_vars_runme.py
@@ -13,8 +13,8 @@ cvar.var_bool = createref_bool(True)
if value_bool(cvar.var_bool) != True:
raise RuntimeError
-cvar.var_char = createref_char('w')
-if value_char(cvar.var_char) != 'w':
+cvar.var_char = createref_char("w")
+if value_char(cvar.var_char) != "w":
raise RuntimeError
cvar.var_unsigned_char = createref_unsigned_char(10)