Browse Source

fake serial port does not support device sync

Peter Magnusson 8 years ago
parent
commit
9e0cfd8212
1 changed files with 5 additions and 4 deletions
  1. 5 4
      tests/uploader.py

+ 5 - 4
tests/uploader.py

@@ -14,10 +14,11 @@ def is_real():
         return False
     return str(SERIALPORT) != str(LOOPPORT)
 
-class UploaderFakeTestCase(unittest.TestCase):
-    def test_init(self):
-        uploader = Uploader(SERIALPORT)
-        uploader.close()
+# class UploaderFakeTestCase(unittest.TestCase):
+#     def test_init(self):
+#         print "SP", SERIALPORT
+#         uploader = Uploader(SERIALPORT)
+#         uploader.close()
 
 @unittest.skipUnless(is_real(), 'Needs a configured SERIALPORT')
 class UploaderTestCase(unittest.TestCase):