Skip to content

Commit

Permalink
Merge pull request avocado-framework#55 from clebergnu/api_review_2nd…
Browse files Browse the repository at this point in the history
…_round

API review: sync with the avocado API changes
  • Loading branch information
lmr committed Jun 9, 2015
2 parents c05f299 + 8136e84 commit 8868333
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion avocado/core/plugins/virt_bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import os
import urllib2

from avocado import data_dir
from avocado.core import data_dir
from avocado.core import output
from avocado.core.plugins import plugin
from avocado.utils import download
Expand Down
6 changes: 3 additions & 3 deletions avocado/virt/defaults.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
Default values used in tests and plugin code.
"""

from avocado import data_dir
from avocado.settings import settings
from avocado.settings import SettingsError
from avocado.core import data_dir
from avocado.core.settings import settings
from avocado.core.settings import SettingsError
from avocado.virt.qemu import path

try:
Expand Down
2 changes: 1 addition & 1 deletion avocado/virt/qemu/machine.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import copy

from avocado.core import exceptions
from avocado import aexpect
from avocado.core import aexpect
from avocado.utils import genio
from avocado.utils import process
from avocado.utils import remote
Expand Down
4 changes: 2 additions & 2 deletions avocado/virt/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
# Author: Lucas Meneghel Rodrigues <[email protected]>

import os
from avocado import test
from avocado import Test
from avocado.utils import process
from avocado.virt.qemu import machine


class VirtTest(test.Test):
class VirtTest(Test):

def __init__(self, methodName='runTest', name=None, params=None,
base_logdir=None, tag=None, job=None, runner_queue=None):
Expand Down

0 comments on commit 8868333

Please sign in to comment.