mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 05:35:25 +00:00
tests: Fix flake8 errors in virsh-auth
Specifically E111 indentation is not a multiple of four This commit is better viewed with 'git show -w'. Signed-off-by: Andrea Bolognani <abologna@redhat.com> Reviewed-by: Erik Skultety <eskultet@redhat.com>
This commit is contained in:
parent
6739736786
commit
85390e6bf9
@ -24,11 +24,11 @@ import subprocess
|
||||
|
||||
builddir = os.getenv("abs_top_builddir")
|
||||
if builddir is None:
|
||||
builddir = os.path.join(os.getcwd(), "..")
|
||||
builddir = os.path.join(os.getcwd(), "..")
|
||||
|
||||
srcdir = os.getenv("abs_top_srcdir")
|
||||
if srcdir is None:
|
||||
srcdir = os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))
|
||||
srcdir = os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))
|
||||
|
||||
uri = "test://" + os.path.join(srcdir, "tests", "virsh-auth.xml")
|
||||
|
||||
@ -43,15 +43,15 @@ proc = subprocess.Popen([virsh, "-c", uri, "uri"],
|
||||
out, err = proc.communicate("astrochicken")
|
||||
|
||||
if proc.returncode != 0:
|
||||
print("virsh failed with code %d" % proc.returncode, file=sys.stderr)
|
||||
if out != "":
|
||||
print("stdout=%s" % out)
|
||||
if err != "":
|
||||
print("stderr=%s" % err)
|
||||
sys.exit(1)
|
||||
print("virsh failed with code %d" % proc.returncode, file=sys.stderr)
|
||||
if out != "":
|
||||
print("stdout=%s" % out)
|
||||
if err != "":
|
||||
print("stderr=%s" % err)
|
||||
sys.exit(1)
|
||||
|
||||
if uri not in out:
|
||||
print("Expected '%s' in '%s'" % (uri, out), file=sys.stderr)
|
||||
sys.exit(1)
|
||||
print("Expected '%s' in '%s'" % (uri, out), file=sys.stderr)
|
||||
sys.exit(1)
|
||||
|
||||
sys.exit(0)
|
||||
|
Loading…
Reference in New Issue
Block a user