Skip to content

Commit fa9ac6e

Browse files
Changing in_waiting() back to inWaiting().
1 parent 67e8c65 commit fa9ac6e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

xbee/tests/test_ieee.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ def test_send_at_command_with_param(self):
507507
calling send should write a full API frame containing the
508508
API AT command packet to the serial device.
509509
"""
510-
510+
511511
# Send an AT command
512512
self.xbee.at(frame_id=stringToBytes('A'), command=stringToBytes('MY'), parameter=b'\x00\x00')
513513

@@ -619,7 +619,7 @@ def test_is_remote_response_parsed_as_io(self):
619619
# ADC0 value of 255
620620
sample = b'\x00\xAA\x00\xFF'
621621
data = header + sample
622-
622+
623623
device = Serial()
624624
device.set_read_data(APIFrame(data = b'\x97D\x00\x13\xa2\x00@oG\xe4v\x1aIS\x00' + data).output())
625625

@@ -689,7 +689,7 @@ def __init__(self, bad_read_index, data):
689689
super(BadReadDevice, self).__init__()
690690
self.set_read_data(data)
691691

692-
def in_waiting(self):
692+
def inWaiting(self):
693693
return 1
694694

695695
def read(self, length=1):

0 commit comments

Comments
 (0)