Skip to content

Commit

Permalink
Merge c05dad0 into 170c162
Browse files Browse the repository at this point in the history
  • Loading branch information
mwalle authored Oct 8, 2018
2 parents 170c162 + c05dad0 commit ac14005
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/interfaces/test_rmcp.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@ def test_asfmsg(self):
pdu = m.pack()
eq_(pdu, b'\x00\x00\x11\xbe\x00\x00\x00\x00')

def test_tostr(self):
m = AsfMsg()
m.data = b'\xaa\xbb\xcc'
eq_(str(m), 'aa bb cc')


class TestIpmiMsg:
def test_ipmimsg_pack(self):
Expand Down

0 comments on commit ac14005

Please sign in to comment.