]> arthur.barton.de Git - bup.git/commitdiff
tmetadata.py: call helpers.unlink() rather than unlink().
authorRob Browning <rlb@defaultvalue.org>
Mon, 21 Mar 2011 00:41:45 +0000 (19:41 -0500)
committerAvery Pennarun <apenwarr@gmail.com>
Mon, 21 Mar 2011 08:30:57 +0000 (01:30 -0700)
Signed-off-by: Rob Browning <rlb@defaultvalue.org>
lib/bup/t/tmetadata.py

index 786a97dab8ee541f2989d71e40fbbb6e7fc585ed..26ecbba26d38bdd4798509c3c1f9445ef055d46e 100644 (file)
@@ -39,7 +39,7 @@ def setup_testfs():
 
 def cleanup_testfs():
     subprocess.call(['umount', 'testfs'])
-    unlink('testfs.img')
+    helpers.unlink('testfs.img')
 
 
 @wvtest