From 967ca2e7f7d89c9c3b9393bf440dc3d0a4abff70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Eckel?= Date: Wed, 2 Nov 2022 09:31:54 +0100 Subject: [PATCH] removed commented imports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jürgen Eckel --- tests/tendermint/test_lib.py | 6 ------ tests/web/test_outputs.py | 5 ----- tests/web/test_transactions.py | 4 ---- 3 files changed, 15 deletions(-) diff --git a/tests/tendermint/test_lib.py b/tests/tendermint/test_lib.py index 1e8b87d..44e2a57 100644 --- a/tests/tendermint/test_lib.py +++ b/tests/tendermint/test_lib.py @@ -5,12 +5,6 @@ import os - -# from unittest.mock import patch -# from planetmint.transactions.types.assets.create import Create -# from planetmint.transactions.types.assets.transfer import Transfer -# from hashlib import sha3_256 - import pytest from unittest.mock import patch diff --git a/tests/web/test_outputs.py b/tests/web/test_outputs.py index ffc91d1..16068f5 100644 --- a/tests/web/test_outputs.py +++ b/tests/web/test_outputs.py @@ -5,11 +5,6 @@ import pytest -# from unittest.mock import MagicMock, patch -# from planetmint.transactions.common import crypto -# from planetmint.transactions.types.assets.create import Create -# from planetmint.transactions.types.assets.transfer import Transfer - from transactions.types.assets.create import Create from transactions.types.assets.transfer import Transfer from unittest.mock import MagicMock, patch diff --git a/tests/web/test_transactions.py b/tests/web/test_transactions.py index 37685f5..89e93e6 100644 --- a/tests/web/test_transactions.py +++ b/tests/web/test_transactions.py @@ -12,10 +12,6 @@ from cryptoconditions import Ed25519Sha256 from ipld import multihash, marshal from hashlib import sha3_256 -# from planetmint.transactions.common import crypto -# from planetmint.transactions.types.assets.create import Create -# from planetmint.transactions.types.assets.transfer import Transfer -# from planetmint.transactions.common.transaction_mode_types import ( from transactions.common import crypto from transactions.common.transaction import Transaction from transactions.types.assets.create import Create