From 5ae5d497ea077a7a3d517934268735e31d648379 Mon Sep 17 00:00:00 2001 From: Pieprzycki Piotr Date: Fri, 16 Dec 2016 15:56:40 +0100 Subject: [PATCH] Fixed vyos ssh port, according to Vagrantfile --- test/unit/TestVyOSDriver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/TestVyOSDriver.py b/test/unit/TestVyOSDriver.py index baf87fc..9ebcb74 100644 --- a/test/unit/TestVyOSDriver.py +++ b/test/unit/TestVyOSDriver.py @@ -28,7 +28,7 @@ class TestConfigVyOSDriver(unittest.TestCase, TestConfigNetworkDriver): cls.vendor = 'vyos' cls.port = '2200' - optional_args = {'port': '2200'} + optional_args = {'port': '12206'} cls.device = vyos.VyOSDriver(hostname, username, password, timeout=60, optional_args=optional_args) cls.device.open()