diff --git a/topics/appendix/tools/intellij_platform_gradle_plugin/tools_intellij_platform_gradle_plugin_faq.md b/topics/appendix/tools/intellij_platform_gradle_plugin/tools_intellij_platform_gradle_plugin_faq.md index 3cf1e1d92..107d87452 100644 --- a/topics/appendix/tools/intellij_platform_gradle_plugin/tools_intellij_platform_gradle_plugin_faq.md +++ b/topics/appendix/tools/intellij_platform_gradle_plugin/tools_intellij_platform_gradle_plugin_faq.md @@ -39,7 +39,7 @@ java.lang.NoClassDefFoundError: org/opentest4j/AssertionFailedError To apply the workaround, add the missing `org.opentest4j:opentest4j` test dependency to your Gradle build configuration: ```kotlin -depemdencies { +dependencies { // ... testImplementation("org.opentest4j:opentest4j:1.3.0") } @@ -60,7 +60,7 @@ Caused by: java.lang.NoClassDefFoundError: org/junit/rules/TestRule To apply the workaround, add the JUnit4 test runtime dependency to your Gradle build configuration: ```kotlin -depemdencies { +dependencies { // ... testRuntimeOnly("junit:junit:4.13.2") }