Skip to content

Commit

Permalink
Fix pylint error
Browse files Browse the repository at this point in the history
  • Loading branch information
jbaublitz committed Oct 7, 2019
1 parent 7540c67 commit 4ab4b4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/client-dbus/tests/dbus/pool/test_add_cache_devs.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def setUp(self):
"""
super().setUp()
self._proxy = get_object(TOP_OBJECT)
((_, (poolpath, devs)), _, _) = Manager.Methods.CreatePool(
((_, (poolpath, devpaths)), _, _) = Manager.Methods.CreatePool(
self._proxy,
{
"name": self._POOLNAME,
Expand All @@ -135,7 +135,7 @@ def setUp(self):
},
)
self._pool_object = get_object(poolpath)
self._devpaths = frozenset([devpath for devpath in devs])
self._devpaths = frozenset(devpaths)
Manager.Methods.ConfigureSimulator(self._proxy, {"denominator": 8})

def testEmptyDevs(self):
Expand Down

0 comments on commit 4ab4b4d

Please sign in to comment.