1
0
mirror of https://github.com/craigerl/aprsd.git synced 2026-06-05 15:44:40 -04:00

change query char from ? to !

This commit is contained in:
Craig Lamparter
2021-01-17 07:55:59 -08:00
parent 658e6b6202
commit 7de2820caa
2 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -41,7 +41,7 @@ class TestPlugin(unittest.TestCase):
@mock.patch("aprsd.messaging.MsgTrack.flush")
def test_query_flush(self, mock_flush):
message = "?delete"
message = "!delete"
query = query_plugin.QueryPlugin(self.config)
expected = "Deleted ALL pending msgs."
@@ -53,7 +53,7 @@ class TestPlugin(unittest.TestCase):
def test_query_restart_delayed(self, mock_restart):
track = messaging.MsgTrack()
track.track = {}
message = "?4"
message = "!4"
query = query_plugin.QueryPlugin(self.config)
expected = "No pending msgs to resend"