Kaydet (Commit) 2918ae8f authored tarafından Jack Jansen's avatar Jack Jansen

n the Mac the frozen import that should fail actually succeeds, and we know it,…

n the Mac the frozen import that should fail actually succeeds, and we know it, so skip the test in stead of confusing the end user.
üst ce92147c
...@@ -18,9 +18,10 @@ try: ...@@ -18,9 +18,10 @@ try:
except ImportError, x: except ImportError, x:
raise TestFailed, "import __phello__.spam failed:" + str(x) raise TestFailed, "import __phello__.spam failed:" + str(x)
try: if sys.platform != "mac": # On the Mac this import does succeed.
import __phello__.foo try:
except ImportError: import __phello__.foo
pass except ImportError:
else: pass
raise TestFailed, "import __phello__.foo should have failed" else:
raise TestFailed, "import __phello__.foo should have failed"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment