Skip to content

Commit f1f8689

Browse files
committed
Properly handle when parsing other types of SMS PDUs (#16)
1 parent f59738d commit f1f8689

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

tests/Modem/test_Modem.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -103,18 +103,6 @@ def test_get_sms(no_serial_port, get_sms):
103103
assert(res.timestamp == datetime.utcfromtimestamp(1498264009))
104104
assert(res.message == 'Test 123')
105105

106-
# WRITE SOCKET
107-
108-
def test_socket_write_under_512(no_serial_port, override_command_result):
109-
modem = Modem()
110-
data = '{message:{fill}{align}{width}}'.format(message='Test-', fill='@', align='<', width=64)
111-
modem.write_socket(data.encode())
112-
113-
def test_socket_write_over_512(no_serial_port, override_command_result):
114-
modem = Modem()
115-
data = '{message:{fill}{align}{width}}'.format(message='Test-', fill='@', align='<', width=600)
116-
modem.write_socket(data.encode())
117-
118106
# DEBUGWRITE
119107

120108
def test_debugwrite(no_serial_port):

0 commit comments

Comments
 (0)