summaryrefslogtreecommitdiff
path: root/Examples/test-suite/python/complextest_runme.py
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2020-10-09 18:34:32 +0100
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2020-10-10 14:53:46 +0100
commit2cbf7d725a66fc13596a4a1b18117edc108237fe (patch)
treec537966350ead7c59fae959a131b1e42f09a9e21 /Examples/test-suite/python/complextest_runme.py
parent4f184500d760f01e0be56eafb4d35c01fa72deb6 (diff)
downloadswig-2cbf7d725a66fc13596a4a1b18117edc108237fe.tar.gz
Remove Remove runtime test for unsupported complex or _Complex by itself
Diffstat (limited to 'Examples/test-suite/python/complextest_runme.py')
-rw-r--r--Examples/test-suite/python/complextest_runme.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/Examples/test-suite/python/complextest_runme.py b/Examples/test-suite/python/complextest_runme.py
index 4e7d08ffc..3eef2b2bc 100644
--- a/Examples/test-suite/python/complextest_runme.py
+++ b/Examples/test-suite/python/complextest_runme.py
@@ -22,14 +22,6 @@ if 'Conjf3' in dir(complextest):
if complextest.Conjf3(a) != a.conjugate():
raise RuntimeError("bad complex mapping")
-if 'Conj4' in dir(complextest):
- if complextest.Conj4(a) != a.conjugate():
- raise RuntimeError("bad complex mapping")
-
-if 'Conj5' in dir(complextest):
- if complextest.Conj5(a) != a.conjugate():
- raise RuntimeError("bad complex mapping")
-
if 'CopyHalf' in dir(complextest):
v = (complex(1, 2), complex(2, 3), complex(4, 3), 1)