Skip to content
Snippets Groups Projects
Commit 7418e247 authored by George Kadianakis's avatar George Kadianakis
Browse files

Remove a broken unittest.

parent 2296d907
No related branches found
No related tags found
No related merge requests found
......@@ -239,13 +239,6 @@ class UtilTest( unittest.TestCase ):
e = util.getEpoch()
self.failUnless(isinstance(e, basestring))
def test6_writeToFile( self ):
f = tempfile.mktemp()
content = "ThisIsATest\n"
util.writeToFile(content, f)
self.failUnless(util.readFromFile(f) == content)
os.unlink(f)
def test7_readFromFile( self ):
# Read from non-existant file.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment