summaryrefslogtreecommitdiff
path: root/Examples/test-suite/python/li_attribute_runme.py
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/test-suite/python/li_attribute_runme.py')
-rw-r--r--Examples/test-suite/python/li_attribute_runme.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/Examples/test-suite/python/li_attribute_runme.py b/Examples/test-suite/python/li_attribute_runme.py
index 80e793618..764bcdb55 100644
--- a/Examples/test-suite/python/li_attribute_runme.py
+++ b/Examples/test-suite/python/li_attribute_runme.py
@@ -8,12 +8,10 @@ if aa.a != 1:
raise RuntimeError
aa.a = 3
if aa.a != 3:
- print aa.a
- raise RuntimeError
+ raise RuntimeError("aa.a: {}".format(aa.a))
if aa.b != 2:
- print aa.b
- raise RuntimeError
+ raise RuntimeError("aa.b: {}".format(aa.b))
aa.b = 5
if aa.b != 5:
raise RuntimeError