aboutsummaryrefslogtreecommitdiffstats
path: root/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests.py')
-rwxr-xr-xtests.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests.py b/tests.py
index b67a966..c673dd2 100755
--- a/tests.py
+++ b/tests.py
@@ -4,12 +4,12 @@
import unittest
import subprocess
-import mowgli
+import maucl
class DefaultTestCase(unittest.TestCase):
def test_disable_au(self):
- mowgli.set_pref()
+ maucl.set_pref()
o = subprocess.check_output(['defaults',
'read',
'com.microsoft.autoupdate2',
@@ -17,7 +17,7 @@ class DefaultTestCase(unittest.TestCase):
self.assertEquals(o.strip(), 'Manual')
def test_enable_au(self):
- mowgli.set_pref(v='Automatic')
+ maucl.set_pref(v='Automatic')
o = subprocess.check_output(['defaults',
'read',
'com.microsoft.autoupdate2',