Improved Primitive support and better testing
[osm/N2VC.git] / modules / libjuju / tests / unit / test_loop.py
index f12368e..9043df6 100644 (file)
@@ -1,5 +1,6 @@
 import asyncio
 import unittest
+
 import juju.loop
 
 
@@ -15,6 +16,7 @@ class TestLoop(unittest.TestCase):
 
     def test_run(self):
         assert asyncio.get_event_loop() == self.loop
+
         async def _test():
             return 'success'
         self.assertEqual(juju.loop.run(_test()), 'success')