Skip to content

Commit

Permalink
colorlog apparently changed, tests fail on colorlog-6.6.0 (#9620)
Browse files Browse the repository at this point in the history
* Update test_simple_sync_protocol.py

* Update test_wallet_sync.py
  • Loading branch information
risner authored Dec 20, 2021
1 parent f1dcd36 commit 598a0e8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/wallet/simple_sync/test_simple_sync_protocol.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import pytest
from clvm.casts import int_to_bytes
from colorlog import logging
from colorlog import getLogger

from chia.consensus.block_rewards import calculate_pool_reward, calculate_base_farmer_reward
from chia.protocols import wallet_protocol, full_node_protocol
Expand Down Expand Up @@ -36,7 +36,7 @@ def wallet_height_at_least(wallet_node, h):
return False


log = logging.getLogger(__name__)
log = getLogger(__name__)


@pytest.fixture(scope="session")
Expand Down
4 changes: 2 additions & 2 deletions tests/wallet/sync/test_wallet_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import asyncio

import pytest
from colorlog import logging
from colorlog import getLogger

from chia.consensus.block_rewards import calculate_base_farmer_reward, calculate_pool_reward
from chia.protocols import full_node_protocol
Expand All @@ -22,7 +22,7 @@ def wallet_height_at_least(wallet_node, h):
return False


log = logging.getLogger(__name__)
log = getLogger(__name__)


@pytest.fixture(scope="session")
Expand Down

0 comments on commit 598a0e8

Please sign in to comment.