CallDistanceTransceiver.py: rename test_send_receive to test_transmit_receive
authorAntonio Ospite <ao2@ao2.it>
Sat, 2 Jan 2016 15:41:19 +0000 (16:41 +0100)
committerAntonio Ospite <ao2@ao2.it>
Mon, 4 Jan 2016 09:48:25 +0000 (10:48 +0100)
All the other code uses the "transmit" verb instead of "send".

src/savemysugar/CallDistanceTransceiver.py

index bfae0b6..fbc347a 100755 (executable)
@@ -401,7 +401,7 @@ class CallDistanceTransceiver(object):
                       transmitting_time)
 
 
-def test_send_receive():
+def test_transmit_receive():
     logging.basicConfig(level=logging.DEBUG)
     call_setup_time_min = 0
     call_setup_time_max = 0.01
@@ -468,4 +468,4 @@ def test_send_receive():
 
 
 if __name__ == "__main__":
-    test_send_receive()
+    test_transmit_receive()