Skip to content

Commit

Permalink
Update test.py
Browse files Browse the repository at this point in the history
  • Loading branch information
zhewenshen authored Jul 20, 2024
1 parent 303e001 commit 2a16f8e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@

@pytest.fixture
def client_server():
return Client(), Server()
client = Client()
server = Server()
key = Fernet.generate_key();
client.set_key(key)
server.set_key(key)
return client, server


def print_server_response(message):
Expand Down

0 comments on commit 2a16f8e

Please sign in to comment.