forked from avocado-framework/avocado-virt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request avocado-framework#55 from clebergnu/api_review_2nd…
…_round API review: sync with the avocado API changes
- Loading branch information
Showing
4 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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): | ||
|