Skip to content

Commit

Permalink
Add port to test when creating with id
Browse files Browse the repository at this point in the history
  • Loading branch information
jadolg authored Feb 26, 2024
1 parent c154937 commit 3d9c6e3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test_outline_vpn.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,14 @@ def test_create_key_with_attributes_and_id(client: OutlineVPN):
data_limit=1024 * 1024 * 20,
method="aes-192-gcm",
password="test",
port=2323,
)
assert key.key_id == key_id
assert key.name == "Yet another test key"
assert key.method == "aes-192-gcm"
assert key.password == "test"
assert key.data_limit == 1024 * 1024 * 20
assert key.port == 2323
assert client.delete_key(key.key_id)


Expand Down

0 comments on commit 3d9c6e3

Please sign in to comment.