Document the unnecessary method invoking in FakeRing
Add comment to explain why we invoke the get_part method even if the _part_shift is equal to 32. Closes-Bug: #1335581 Change-Id: I160e9383b5e65f75ed5e89511cc7e63c51958a25
This commit is contained in:
parent
c94779d2ac
commit
2f45600c7d
@ -140,6 +140,7 @@ class FakeRing(Ring):
|
||||
self._reload()
|
||||
|
||||
def get_part(self, *args, **kwargs):
|
||||
# always call the real method, even if the fake ignores the result
|
||||
real_part = super(FakeRing, self).get_part(*args, **kwargs)
|
||||
if self._part_shift == 32:
|
||||
return 1
|
||||
|
Loading…
x
Reference in New Issue
Block a user