Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(607)

Unified Diff: mojo/python/tests/mojo_unittest.py

Issue 843523002: Delete empty mojo python package, and prefix all python packages with mojo_ (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/python/tests/messaging_unittest.py ('k') | mojo/python/tests/promise_unittest.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/python/tests/mojo_unittest.py
diff --git a/mojo/python/tests/mojo_unittest.py b/mojo/python/tests/mojo_unittest.py
index f80ffacf1972d1496fa049b0d20d7dcbc1095655..fc921ac03083085cb7a56b3e050cb379a63a1d71 100644
--- a/mojo/python/tests/mojo_unittest.py
+++ b/mojo/python/tests/mojo_unittest.py
@@ -5,8 +5,8 @@
import unittest
# pylint: disable=E0611,F0401
-import mojo.embedder
-import mojo.system
+import mojo_embedder
+import mojo_system
class MojoTestCase(unittest.TestCase):
@@ -16,9 +16,9 @@ class MojoTestCase(unittest.TestCase):
def run(self, *args, **kwargs):
try:
- mojo.embedder.Init()
- self.loop = mojo.system.RunLoop()
+ mojo_embedder.Init()
+ self.loop = mojo_system.RunLoop()
unittest.TestCase.run(self, *args, **kwargs)
finally:
self.loop = None
- assert mojo.embedder.ShutdownForTest()
+ assert mojo_embedder.ShutdownForTest()
« no previous file with comments | « mojo/python/tests/messaging_unittest.py ('k') | mojo/python/tests/promise_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698