From: Martin Winter Date: Tue, 11 Apr 2017 04:58:54 +0000 (-0700) Subject: all-protocol-startup: Fix pref commit - bamboo prefix is lower case X-Git-Tag: frr-7.1-dev~151^2~336 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=1026c19adbefe06d9e6ea041ba4d23a92763f2de;p=matthieu%2Ffrr.git all-protocol-startup: Fix pref commit - bamboo prefix is lower case Signed-off-by: Martin Winter --- diff --git a/tests/topotests/all-protocol-startup/test_all_protocol_startup.py b/tests/topotests/all-protocol-startup/test_all_protocol_startup.py index b8baba38df..ad0e6d2032 100755 --- a/tests/topotests/all-protocol-startup/test_all_protocol_startup.py +++ b/tests/topotests/all-protocol-startup/test_all_protocol_startup.py @@ -265,7 +265,7 @@ def test_error_messages_daemons(): # Ignoring the issue if told to ignore (ie not yet fixed) if (error_logs != ""): - if (os.environ.get('BAMBOO_TOPOTESTS_ISSUE_349') == "IGNORE"): + if (os.environ.get('bamboo_TOPOTESTS_ISSUE_349') == "IGNORE"): sys.stderr.write('Known issue - IGNORING. See https://github.com/FRRouting/frr/issues/349\n') pytest.skip('Known issue - IGNORING. See https://github.com/FRRouting/frr/issues/349') @@ -437,7 +437,7 @@ def test_ospfv2_interfaces(): # Ignoring the issue if told to ignore (ie not yet fixed) if (failures != 0): - if (os.environ.get('BAMBOO_TOPOTESTS_ISSUE_348') == "IGNORE"): + if (os.environ.get('bamboo_TOPOTESTS_ISSUE_348') == "IGNORE"): sys.stderr.write('Known issue - IGNORING. See https://github.com/FRRouting/frr/issues/348\n') pytest.skip('Known issue - IGNORING. See https://github.com/FRRouting/frr/issues/348')