Francesco Romani has uploaded a new change for review.

Change subject: tests: fix pyflakes glitch
......................................................................

tests: fix pyflakes glitch

Fixes:
./tests/toolTests.py:253: local variable 'args' is assigned to but never
used

Change-Id: I5813fae77633dc4c1e99b1d2660889cea880e395
Signed-off-by: Francesco Romani <[email protected]>
---
M tests/toolTests.py
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/90/36890/1

diff --git a/tests/toolTests.py b/tests/toolTests.py
index a9a194e..867a309 100644
--- a/tests/toolTests.py
+++ b/tests/toolTests.py
@@ -250,7 +250,7 @@
     def testConfigureFiltering(self):
         class Dummy(object):
             pass
-        c, args = Dummy(), Dummy()
+        c = Dummy()
         setattr(c, 'name', "Mock")
 
         for (isconfigured, isvalid, force, expected) in (


-- 
To view, visit http://gerrit.ovirt.org/36890
To unsubscribe, visit http://gerrit.ovirt.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I5813fae77633dc4c1e99b1d2660889cea880e395
Gerrit-PatchSet: 1
Gerrit-Project: vdsm
Gerrit-Branch: master
Gerrit-Owner: Francesco Romani <[email protected]>
_______________________________________________
vdsm-patches mailing list
[email protected]
https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches

Reply via email to