From f1e9262c94a7b6e9c0a2b8f39535151668364b92 Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Tue, 3 Nov 2015 21:06:30 +0100 Subject: [PATCH] Avoid test crash if GNS3 is running on the same computer --- tests/modules/test_base_vm.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/modules/test_base_vm.py b/tests/modules/test_base_vm.py index 94fdcd31..65c138e5 100644 --- a/tests/modules/test_base_vm.py +++ b/tests/modules/test_base_vm.py @@ -48,8 +48,8 @@ def test_temporary_directory(project, manager): def test_console(project, manager): vm = VPCSVM("test", "00010203-0405-0607-0809-0a0b0c0d0e0f", project, manager) - vm.console = 2011 - assert vm.console == 2011 + vm.console = 2111 + assert vm.console == 2111 def test_console_vnc_invalid(project, manager):