Skip to content
Snippets Groups Projects
Commit 325c1b37 authored by Edward Hervey's avatar Edward Hervey :metal: Committed by Edward Hervey
Browse files

baseclasses: Add method to set a specific list of scenarios

https://bugzilla.gnome.org/show_bug.cgi?id=781314
parent 9d33d0ec
No related branches found
No related tags found
No related merge requests found
......@@ -1819,6 +1819,13 @@ class GstValidateBaseTestManager(TestsManager):
self._scenarios = list(set(self._scenarios))
def set_scenarios(self, scenarios):
"""
Override the scenarios
"""
self._scenarios = []
self.add_scenarios(scenarios)
def get_scenarios(self):
return self._scenarios
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment