Commit 26ca1ad0 authored by Miguel Angel Ajo's avatar Miguel Angel Ajo

Fix py26 testing for OSX, assertIsNotNone unavailable for py26

parent 788b38c0
......@@ -88,7 +88,7 @@ class TestBoardClass(unittest.TestCase):
self.assertTrue(result)
pcb2 = LoadBoard(self.FILENAME)
self.assertIsNotNone(pcb2)
self.assertNotEqual(pcb2,None)
tb = pcb2.GetTitleBlock()
self.assertEqual(tb.GetTitle(),self.TITLE)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment