summaryrefslogtreecommitdiffstats
path: root/testing/raptor/browsertime/support-scripts/sample_python_support.py
blob: b31e890c0a3608f1b9eb333684cee3bb470a6d2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

from base_python_support import BasePythonSupport


class SamplePythonSupport(BasePythonSupport):
    def modify_command(self, cmd, test):
        for i, entry in enumerate(cmd):
            if "{replace-with-constant-value}" in entry:
                cmd[i] = "25"