Skip to content

Commit b72ca1c

Browse files
committed
Make RegressionMixin the base to all builtins docs
1 parent a65fdda commit b72ca1c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/regression_test_api.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ In essence, these builtins exert control over the test creation, and they allow
4444
Built-in types
4545
--------------
4646

47-
.. py:function:: RegressionTest.parameter(values=None, inherit_params=False, filter_params=None)
47+
.. py:function:: RegressionMixin.parameter(values=None, inherit_params=False, filter_params=None)
4848
4949
Inserts or modifies a regression test parameter.
5050
If a parameter with a matching name is already present in the parameter space of a parent class, the existing parameter values will be combined with those provided by this method following the inheritance behavior set by the arguments ``inherit_params`` and ``filter_params``.
@@ -89,7 +89,7 @@ Built-in types
8989
This only has an effect if used with ``inherit_params=True``.
9090

9191

92-
.. py:function:: RegressionTest.variable(*types, value=None)
92+
.. py:function:: RegressionMixin.variable(*types, value=None)
9393
9494
Inserts a new regression test variable.
9595
Declaring a test variable through the :func:`variable` built-in allows for a more robust test implementation than if the variables were just defined as regular test attributes (e.g. ``self.a = 10``).

0 commit comments

Comments
 (0)