[testsuite] Fix typo and obsolete syntax

v0.27.3
Dan Čermák 7 years ago
parent fe98936375
commit d1714f6564

@ -300,7 +300,7 @@ class FileDecoratorBase(object):
Returns a new setUp() function that can be used as a class Returns a new setUp() function that can be used as a class
member function (i.e. invoked via self.setUp()). member function (i.e. invoked via self.setUp()).
It's functionality is described in this classes' docstring. Its functionality is described in this classes' docstring.
""" """
def setUp(other): def setUp(other):
@ -399,7 +399,7 @@ class CopyFiles(FileDecoratorBase):
copy of the files specified as the parameters passed to the decorator. copy of the files specified as the parameters passed to the decorator.
Example: Example:
>>> @CopyFiles("{some_var}/file.txt", "{another_var}/other_file.png") >>> @CopyFiles("$some_var/file.txt", "$another_var/other_file.png")
... class Foo(Case): ... class Foo(Case):
... pass ... pass

Loading…
Cancel
Save