From 3d9c6e3f548e3960b2942328072058faa60731dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jorge=20Alberto=20D=C3=ADaz=20Orozco=20=28Akiel=29?= Date: Mon, 26 Feb 2024 20:11:00 +0000 Subject: [PATCH] Add port to test when creating with id --- test_outline_vpn.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test_outline_vpn.py b/test_outline_vpn.py index d072b36..256b36a 100644 --- a/test_outline_vpn.py +++ b/test_outline_vpn.py @@ -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)