Issue 19572: More silently skipped tests explicitly skipped.

This commit is contained in:
Zachary Ware 2013-12-08 00:20:35 -06:00
parent 774f909489
commit 9fe6d86709
34 changed files with 122 additions and 134 deletions

View file

@ -20,7 +20,6 @@ class CurrentTimeTest(unittest.TestCase):
t0 = server.currentTime.getCurrentTime()
except socket.error as e:
self.skipTest("network error: %s" % e)
return
# Perform a minimal sanity check on the result, just to be sure
# the request means what we think it means.
@ -44,7 +43,6 @@ class CurrentTimeTest(unittest.TestCase):
builders = server.getAllBuilders()
except socket.error as e:
self.skipTest("network error: %s" % e)
return
self.addCleanup(lambda: server('close')())
# Perform a minimal sanity check on the result, just to be sure