aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/python/li_std_set_runme.py
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/test-suite/python/li_std_set_runme.py')
-rw-r--r--Examples/test-suite/python/li_std_set_runme.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/Examples/test-suite/python/li_std_set_runme.py b/Examples/test-suite/python/li_std_set_runme.py
index ad3c6d881..5e5b72442 100644
--- a/Examples/test-suite/python/li_std_set_runme.py
+++ b/Examples/test-suite/python/li_std_set_runme.py
@@ -54,6 +54,8 @@ if i.next() != 2:
if i.next() != 3:
raise RuntimeError
+if si[0] != 1:
+ raise RuntimeError
i = s.begin()
i.next()
@@ -88,5 +90,5 @@ sum = ()
for i in s:
sum = sum + (i,)
-if (len(sum) != 3 or (not 1 in sum) or (not 'hello' in sum) or (not (1, 2) in sum)):
+if (len(sum) != 3 or (not 1 in sum) or (not "hello" in sum) or (not (1, 2) in sum)):
raise RuntimeError