diff options
Diffstat (limited to 'scripts/tests/Ice/networkProxy.py')
-rw-r--r-- | scripts/tests/Ice/networkProxy.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/scripts/tests/Ice/networkProxy.py b/scripts/tests/Ice/networkProxy.py index 77a4efe65cb..038ddbeb4ff 100644 --- a/scripts/tests/Ice/networkProxy.py +++ b/scripts/tests/Ice/networkProxy.py @@ -26,9 +26,7 @@ class NetworkProxyTestCase(ClientServerTestCase): self.proxy = None def canRun(self, current): - if current.config.buildPlatform == "iphonesimulator": - return False - elif current.config.buildPlatform == "iphoneos" and self.getName() == "HTTP client/server": + if current.config.buildPlatform in ["iphonesimulator", "iphoneos"]: return False return True |