diff options
author | 2023-02-01 12:43:14 +0000 | |
---|---|---|
committer | 2023-02-01 13:20:10 +0000 | |
commit | 1be3f2cac2341ea7fa2868c9deab5a9b9daa52d7 (patch) | |
tree | beffda2bf4152ed0d557d6b0dc1ea64d42ec87c3 | |
parent | d3917a57c9cc5966a00b0a53394613a2eb796a5a (diff) |
fix(model): Merge vsap into hoststack
Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I2b1aa0240e611f3f7d2b516583a6ea3e36091821
(cherry picked from commit 9a789458bd9315e53e1788867e73ee7f0d3eb5f4)
-rw-r--r-- | docs/model/current/schema/test_case.info.schema.yaml | 1 | ||||
-rw-r--r-- | resources/libraries/python/model/ExportJson.py | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/docs/model/current/schema/test_case.info.schema.yaml b/docs/model/current/schema/test_case.info.schema.yaml index bc5a35007f..e97cd74955 100644 --- a/docs/model/current/schema/test_case.info.schema.yaml +++ b/docs/model/current/schema/test_case.info.schema.yaml @@ -349,7 +349,6 @@ allOf: - ndrpdr - reconf - soak - - vsap tg_type: description: >- TG type used, e.g. TREX. diff --git a/resources/libraries/python/model/ExportJson.py b/resources/libraries/python/model/ExportJson.py index bbb989c3cc..bd457c00f6 100644 --- a/resources/libraries/python/model/ExportJson.py +++ b/resources/libraries/python/model/ExportJson.py @@ -65,7 +65,7 @@ class ExportJson(): if u"DEVICETEST" in tags: test_type = u"device" elif u"LDP_NGINX" in tags: - test_type = u"vsap" + test_type = u"hoststack" elif u"HOSTSTACK" in tags: test_type = u"hoststack" elif u"GSO_TRUE" in tags or u"GSO_FALSE" in tags: |