From a49b636d239d716c767aad841f1d483d7563cb85 Mon Sep 17 00:00:00 2001 From: crivella Date: Thu, 29 Feb 2024 15:43:48 +0100 Subject: [PATCH] Fixed spelling mistake --- docs/tutorial_deps.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial_deps.rst b/docs/tutorial_deps.rst index bf5eee3993..5f82acc3ef 100644 --- a/docs/tutorial_deps.rst +++ b/docs/tutorial_deps.rst @@ -53,7 +53,7 @@ In order for the binding to work correctly the function arguments must be named Referring to a dependency only by the test's name is not enough, since a test might be associated with multiple programming environments. For this reason, each dependency argument is actually bound to a function that accepts as argument the name of the target partition and target programming environment. If no arguments are passed, the current programming environment is implied, such that ``OSUDownloadTest()`` is equivalent to ``OSUDownloadTest(self.current_environ.name, self.current_partition.name)``. -In this case, since both the partition and environment of the target dependency do not much those of the current test, we need to specify both. +In this case, since both the partition and environment of the target dependency do not match those of the current test, we need to specify both. This call returns the actual test case of the dependency that has been executed. This allows you to access any attribute from the target test, as we do in this example by accessing the target test's stage directory, which we use to construct the sourcesdir of the test.