diff options
| author | jason | 2020-03-23 12:53:14 -0600 |
|---|---|---|
| committer | jason | 2020-03-23 12:54:47 -0600 |
| commit | b71c921f091bde61a89ab50dcaa1915b6cf58776 (patch) | |
| tree | cfa66550303c4c75b08833ec2c1086c5935605a5 | |
| parent | a983f6d3b4d33ac621860705fe275f4589373101 (diff) | |
| download | eventmq-b71c921f091bde61a89ab50dcaa1915b6cf58776.tar.gz eventmq-b71c921f091bde61a89ab50dcaa1915b6cf58776.zip | |
fix test typofix_test_typo
| -rw-r--r-- | eventmq/tests/test_utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eventmq/tests/test_utils.py b/eventmq/tests/test_utils.py index e71f2e3..a09b5b8 100644 --- a/eventmq/tests/test_utils.py +++ b/eventmq/tests/test_utils.py | |||
| @@ -247,9 +247,9 @@ class EMQPServiceTestCase(unittest.TestCase): | |||
| 247 | 247 | ||
| 248 | obj.send_inform(queues=([10, 'push'], [7, 'email'], | 248 | obj.send_inform(queues=([10, 'push'], [7, 'email'], |
| 249 | [3, 'default'])) | 249 | [3, 'default'])) |
| 250 | sendmsg_mock.asert_called_with( | 250 | sendmsg_mock.assert_called_with( |
| 251 | 'some-outgoing-socket', 'INFORM', | 251 | 'some-outgoing-socket', 'INFORM', |
| 252 | ['[10, "push"],[7, "email"],[3, "default"]', | 252 | ['[[10, "push"], [7, "email"], [3, "default"]]', |
| 253 | constants.CLIENT_TYPE.worker] | 253 | constants.CLIENT_TYPE.worker] |
| 254 | ) | 254 | ) |
| 255 | 255 | ||