Skip to content

Commit 3c19c26

Browse files
committed
fix tests and scripts
1 parent 2bd4718 commit 3c19c26

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ clean:
44
find . -name '*.pyc' | xargs rm -rf
55

66
test:
7-
python -m ruff microagent tests
7+
python -m ruff check microagent tests
88
python -m mypy microagent
99
python -m pytest tests
1010

tests/test_tools_amqp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ async def test_broker_send_ok(channel):
6363

6464

6565
async def test_broker_send_ok_topic(channel):
66-
queue = Queue(name='test_queue', exchange='ex', topics=['*'])
66+
Queue(name='test_queue', exchange='ex', topics=['*'])
6767
broker = AMQPBroker('amqp://localhost')
6868
await broker.ex.send({"a":1}, topic='a')
6969

0 commit comments

Comments
 (0)