lib.wiring: remove unnecessary flipping in Signature.flatten.
This commit is contained in:
parent
3e6e78012d
commit
11ec35d258
2 changed files with 2 additions and 4 deletions
|
|
@ -373,8 +373,8 @@ class SignatureTestCase(unittest.TestCase):
|
|||
self.assertFlattenedSignature(sig.flatten(intf), [
|
||||
(("a", "p"), Out(1), intf.a.p),
|
||||
(("b", "q"), In (1), intf.b.q),
|
||||
(("c", "r"), Out(1), intf.c.r),
|
||||
(("d", "s"), In (1), intf.d.s),
|
||||
(("c", "r"), In (1), intf.c.r),
|
||||
(("d", "s"), Out(1), intf.d.s),
|
||||
])
|
||||
|
||||
def test_is_compliant_signature(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue