~harlowja/cloud-init/cloud-init-net-refactor

« back to all changes in this revision

Viewing changes to tests/unittests/test_rh_subscription.py

  • Committer: Joshua Harlow
  • Date: 2016-05-19 22:33:15 UTC
  • Revision ID: harlowja@gmail.com-20160519223315-2bylbhy01tocjpkx
Fix up tests and flake8 warnings

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
#    You should have received a copy of the GNU General Public License
11
11
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
12
12
 
13
 
 
14
13
import logging
15
 
import mock
16
 
import unittest
17
 
 
18
14
 
19
15
from cloudinit.config import cc_rh_subscription
 
16
from cloudinit import util
20
17
 
21
18
from .helpers import TestCase, mock
22
19