From d1714f65645bf23f866090266935ced89bc8276f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20=C4=8Cerm=C3=A1k?= Date: Tue, 24 Apr 2018 23:45:46 +0200 Subject: [PATCH] [testsuite] Fix typo and obsolete syntax --- tests/system_tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/system_tests.py b/tests/system_tests.py index 1488a4c9..d5480713 100644 --- a/tests/system_tests.py +++ b/tests/system_tests.py @@ -300,7 +300,7 @@ class FileDecoratorBase(object): Returns a new setUp() function that can be used as a class 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): @@ -399,7 +399,7 @@ class CopyFiles(FileDecoratorBase): copy of the files specified as the parameters passed to the decorator. Example: - >>> @CopyFiles("{some_var}/file.txt", "{another_var}/other_file.png") + >>> @CopyFiles("$some_var/file.txt", "$another_var/other_file.png") ... class Foo(Case): ... pass