diff --git a/topics/tutorials/writing_tests_for_plugins/completion_test.md b/topics/tutorials/writing_tests_for_plugins/completion_test.md
index 5baabae10..638cc57a4 100644
--- a/topics/tutorials/writing_tests_for_plugins/completion_test.md
+++ b/topics/tutorials/writing_tests_for_plugins/completion_test.md
@@ -18,7 +18,7 @@ Create the DefaultTestData.simple file in the testData
{src="simple_language_plugin/src/test/testData/DefaultTestData.simple"}
Create a test input Java file CompleteTestData.java in the testData directory.
-This file contains a Simple Language reference within the Java code at ``.
+This file contains a Simple Language reference within the Java code at `` [special marker](test_project_and_testdata_directories.md#special-markup), which denotes the caret position to use in the test.
```java
```
@@ -45,7 +45,7 @@ This method:
{src="simple_language_plugin/src/test/java/org/intellij/sdk/language/SimpleCodeInsightTest.java" include-symbol="testCompletion"}
-A number of related methods exist in `CodeInsightTestFixture` for testing completion and lookup elements, e.g., when testing completion variants and requiring only one testdata file `CodeInsightTestFixture.testCompletionVariants()`.
+A number of related methods exist in [`CodeInsightTestFixture`](%gh-ic%/platform/testFramework/src/com/intellij/testFramework/fixtures/CodeInsightTestFixture.java) for testing completion and lookup elements, e.g., when testing completion variants and requiring only one testdata file `CodeInsightTestFixture.testCompletionVariants()`.
## Run the Test
[Run](parsing_test.md#run-the-test) the test and make sure it's green.