summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/testresources/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/testresources/__init__.py b/lib/testresources/__init__.py
index 5ef36ca..da26136 100644
--- a/lib/testresources/__init__.py
+++ b/lib/testresources/__init__.py
@@ -306,10 +306,10 @@ class TestResource(object):
return result
def reset(self, old_resource):
- """Override this to reset resources.
+ """Overridable method to return a clean version of old_resource.
By default, the resource will be cleaned then remade if it had
- previously been `dirtied`.
+ previously been `dirtied`.
This function needs to take the dependent resource stack into
consideration as _make_all and _clean_all do.