buildframework/helium/sf/python/pythoncore/lib/pythoncoretests/test_ido.py
changeset 628 7c4a911dc066
parent 588 c7c26511138f
--- a/buildframework/helium/sf/python/pythoncore/lib/pythoncoretests/test_ido.py	Wed Jun 16 16:51:40 2010 +0300
+++ b/buildframework/helium/sf/python/pythoncore/lib/pythoncoretests/test_ido.py	Fri Aug 13 14:59:05 2010 +0300
@@ -47,7 +47,7 @@
     def test_ido_sysdef_valid(self):
         """ Verifying get_sysdef_location method with valid sysdef"""
         test_sysdef_file = os.path.join(os.environ['TEST_DATA'], 'data', 'packageiad', 'layers.sysdef.xml')
-        location = ido.get_sysdef_location(test_sysdef_file); 
+        location = ido.get_sysdef_location(test_sysdef_file) 
         assert location != None
 
     def test_ido_sysdef_invalid(self):
@@ -55,6 +55,6 @@
         (f_d, filename) = mkstemp()
         os.write(f_d,'Test sysdef file')
         os.close(f_d)
-        location = ido.get_sysdef_location(filename); 
+        location = ido.get_sysdef_location(filename) 
         os.unlink(filename)
         assert location == None