mostly cleanup, minor adds, pseudo code in gtkui.py
[hermes] / package / test / test_syncjob.py
index 4b2246d..ebf7b5d 100644 (file)
@@ -1,5 +1,5 @@
 import unittest
-from org.maemo.hermes.engine.syncjob import Syncjob
+from org.maemo.hermes.engine.syncjob import SyncJob
 
 class FakeContact():
     def __init__(self):
@@ -26,7 +26,7 @@ class TestSyncJob(unittest.TestCase):
         self.services = [self.service]
         self.contact = FakeContact()
         self.contacts = [self.contact]
-        self.testee = Syncjob(self.services, self.contacts)
+        self.testee = SyncJob(self.services, self.contacts)
         
     def test_main_flow(self):
         self.testee.run()