diff options
author | Tomas Alexy <tomas.alexy@pantheon.tech> | 2021-01-04 10:15:51 +0100 |
---|---|---|
committer | Tomas Alexy <tomas.alexy@pantheon.tech> | 2021-01-04 13:08:38 +0000 |
commit | 9446b9bf9c15999feec3c8a48fec428bca094500 (patch) | |
tree | b80823678fd2ab041462302b39e3731bb7696915 /resources/tools | |
parent | 44dcb3113c8ade2e44543746abca861a89362c9b (diff) |
API: deprecated COP APIs
Signed-off-by: Tomas Alexy <tomas.alexy@pantheon.tech>
Change-Id: Ifb97088a26f3c2ab2ecee28ed43e6e957a844c64
Diffstat (limited to 'resources/tools')
-rw-r--r-- | resources/tools/presentation/generator_tables.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py index fd254cc3b7..0d8b27208c 100644 --- a/resources/tools/presentation/generator_tables.py +++ b/resources/tools/presentation/generator_tables.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 Cisco and/or its affiliates. +# Copyright (c) 2021 Cisco and/or its affiliates. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at: @@ -1064,6 +1064,8 @@ def _generate_url(testbed, test_name): bsf = u"features" elif u"policer" in test_name: bsf = u"features" + elif u"adl" in test_name: + bsf = u"features" elif u"cop" in test_name: bsf = u"features" elif u"nat" in test_name: |