Skip to content

Commit

Permalink
Merge branch 'main' into feat/concurrent_batches
Browse files Browse the repository at this point in the history
  • Loading branch information
hussein-awala committed Feb 24, 2024
2 parents da8f70d + 6ee877d commit 050f221
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from __future__ import annotations

import asyncio
import logging
from unittest import mock

import pytest
Expand All @@ -22,7 +21,6 @@ class MockAsyncBatcher(AsyncBatcher):
mock_batch_processor = mock.AsyncMock(side_effect=lambda batch: [i * 2 for i in batch])

async def process_batch(self, *args, **kwargs):
logging.debug(("fuck", args, kwargs))
return await self.mock_batch_processor(*args, **kwargs)


Expand Down

0 comments on commit 050f221

Please sign in to comment.