Skip to content

Commit f654be6

Browse files
committed
Sequence improvements test.py
1 parent a2ff10e commit f654be6

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

examples/token_dissociate.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
import sys
33
from dotenv import load_dotenv
44

5-
project_root = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
6-
sys.path.insert(0, project_root)
7-
85
from hedera_sdk_python.client.client import Client
96
from hedera_sdk_python.account.account_id import AccountId
107
from hedera_sdk_python.crypto.private_key import PrivateKey

test.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -271,9 +271,7 @@ def main():
271271

272272
associate_token(client, recipient_id, recipient_private_key, [token_id_1, token_id_2])
273273
transfer_token(client, operator_id, operator_key, recipient_id, token_id_1)
274-
transfer_token(client, recipient_id, recipient_private_key, operator_id, token_id_1)
275-
dissociate_token(client, recipient_id, recipient_private_key, [token_id_1, token_id_2])
276-
associate_token(client, recipient_id, recipient_private_key, [token_id_1])
274+
dissociate_token(client, recipient_id, recipient_private_key, [token_id_2])
277275
delete_token(client, token_id_1, admin_key)
278276

279277
topic_id = create_topic(client)

0 commit comments

Comments
 (0)