Skip to content

Commit

Permalink
Fixed broken unittest
Browse files Browse the repository at this point in the history
  • Loading branch information
pylessard committed Apr 27, 2019
1 parent 2931d57 commit acc8f8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_socket.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def test_read_write_opts(self):
self.assertEqual(o.bs, 22)
self.assertEqual(o.wftmax, 33)

s.set_opts(optflag=0xFFFF, frame_txtime=0x55, ext_address=0x11, txpad=0x22, rxpad=0x33, rx_ext_address=0x44)
s.set_opts(optflag=0xFFFF, frame_txtime=0x55, ext_address=0x11, txpad=0x22, rxpad=0x33, rx_ext_address=0x44, tx_stmin=0x55)
o = s.get_opts()

self.assertEqual(o.optflag, 0xFFFF)
Expand Down

0 comments on commit acc8f8c

Please sign in to comment.