Skip to content

Commit

Permalink
fix typo (Skiptest vs SkipTest)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dustin J. Mitchell committed Jun 7, 2010
1 parent 2c35fc1 commit 23b2977
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions slave/buildslave/test/unit/test_slave_commands_utils.py
Expand Up @@ -95,10 +95,10 @@ def test_rmdirRecursive_easy(self):
self.assertFalse(os.path.exists(self.target))

def test_rmdirRecursive_symlink(self):
# this was intended as a regressio ntest for #792, but doesn't seem
# this was intended as a regression test for #792, but doesn't seem
# to trigger it. It can't hurt to check it, all the same.
if sys.platform.startswith('win'):
raise unittest.Skiptest("no symlinks on this platform")
raise unittest.SkipTest("no symlinks on this platform")
os.mkdir("noperms")
open("noperms/x", "w")
os.chmod("noperms/x", 0)
Expand Down

0 comments on commit 23b2977

Please sign in to comment.