Index: bin/run_tests
===================================================================
--- bin/run_tests	(revision 10)
+++ bin/run_tests	(revision 16)
@@ -1,16 +1,16 @@
 #!/usr/bin/env python
 #
-# Run the tests for the postman package
+# Run the tests for the mailjam package
 
 import os, shutil, sys, unittest
 
 try:
-    from postman.tests import *
+    from mailjam.tests import *
 except ImportError:
     sys.path.append(os.path.join(os.path.dirname(__file__), '../'))
     try:
-        from postman.tests import *
+        from mailjam.tests import *
     except ImportError:
-        raise SystemExit('Could not find postman on your filesystem')
+        raise SystemExit('Could not find mailjam on your filesystem')
 
 try:
@@ -18,4 +18,4 @@
 finally:
     # FIXME: hardcoded path to the tmp directory, we should read this path
-    # from postman/tests/postman.conf
-    shutil.rmtree('/tmp/postman-tests')
+    # from mailjam/tests/mailjam.conf
+    shutil.rmtree('/tmp/mailjam-tests')
