From 20dc779fd8a9668e4e546b2c198dccc1f0023fc7 Mon Sep 17 00:00:00 2001 From: Daniel Lintott Date: Sat, 27 Sep 2014 19:27:26 +0100 Subject: [PATCH] Fix test for dynamips c7200 NPE (Default is now NPE-400) --- tests/dynamips/test_c7200.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/dynamips/test_c7200.py b/tests/dynamips/test_c7200.py index ed5df69e..7b74cc7f 100644 --- a/tests/dynamips/test_c7200.py +++ b/tests/dynamips/test_c7200.py @@ -29,9 +29,9 @@ def test_router_exists(router_c7200): def test_npe(router_c7200): - assert router_c7200.npe == "npe-200" # default value - router_c7200.npe = "npe-400" - assert router_c7200.npe == "npe-400" + assert router_c7200.npe == "npe-400" # default value + router_c7200.npe = "npe-200" + assert router_c7200.npe == "npe-200" def test_midplane(router_c7200):