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:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user