Skip to content

Commit

Permalink
fix: interaction test
Browse files Browse the repository at this point in the history
  • Loading branch information
Archento committed Jun 27, 2024
1 parent b1eda7d commit 41d4f60
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/test_interaction.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import base64
import unittest
from datetime import datetime, timezone

from babble.client import Client
from babble.config import MAINNET_CHAIN_ID, TESTNET_CHAIN_ID
Expand Down Expand Up @@ -36,7 +35,7 @@ def test_simple_interaction_main(self):
client1 = create_client(CLIENT_1_SEED, MAINNET_CHAIN_ID)
client2 = create_client(CLIENT_2_SEED, MAINNET_CHAIN_ID)

message = "now: " + datetime.now(timezone.utc).isoformat()
message = "test message"

client1.send(client2.delegate_address, message)

Expand All @@ -51,7 +50,7 @@ def test_simple_interaction_test(self):
client1_dorado = create_client(CLIENT_1_SEED, TESTNET_CHAIN_ID)
client2_dorado = create_client(CLIENT_2_SEED, TESTNET_CHAIN_ID)

message = "now on dorado: " + datetime.now(timezone.utc).isoformat()
message = "test message on dorado"

client1_dorado.send(client2_dorado.delegate_address, message)

Expand Down

0 comments on commit 41d4f60

Please sign in to comment.