Merge pull request #48 from jvalleroy/fix-tests

Fix tests
This commit is contained in:
Nick Daly 2013-11-02 08:17:11 -07:00
commit b14b0db4d2
3 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@
# -*- mode: python; mode: auto-fill; fill-column: 80 -*-
import sys
from actions.privilegedactions import privilegedaction_run
from privilegedactions import privilegedaction_run
import unittest
class TestPrivileged(unittest.TestCase):

View File

@ -2,7 +2,7 @@
# -*- mode: python; mode: auto-fill; fill-column: 80 -*-
import sys
from actions.privilegedactions import privilegedaction_run
from privilegedactions import privilegedaction_run
import unittest
class TestPrivileged(unittest.TestCase):

View File

@ -1,7 +1,7 @@
#! /usr/bin/env python
# -*- mode: python; mode: auto-fill; fill-column: 80 -*-
import user_store
import modules.user_store
from logger import Logger
import cfg
import unittest
@ -83,4 +83,4 @@ class UserStore(unittest.TestCase):
return user
if __name__ == "__main__":
unittest.main()
unittest.main()