Skip to content

Commit

Permalink
fix ktlint
Browse files Browse the repository at this point in the history
  • Loading branch information
arksap2002 committed Feb 14, 2025
1 parent f14857f commit 83189ac
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package org.jetbrains.research.testspark.core.test.strategies

import org.jetbrains.research.testspark.core.data.JUnitVersion
import org.jetbrains.research.testspark.core.test.TestBodyPrinter
import org.jetbrains.research.testspark.core.test.OperationResult
import org.jetbrains.research.testspark.core.test.ErrorDetails
import org.jetbrains.research.testspark.core.test.OperationResult
import org.jetbrains.research.testspark.core.test.TestBodyPrinter
import org.jetbrains.research.testspark.core.test.data.TestCaseGeneratedByLLM
import org.jetbrains.research.testspark.core.test.data.TestLine
import org.jetbrains.research.testspark.core.test.data.TestLineType
Expand Down Expand Up @@ -106,9 +106,7 @@ class JUnitTestSuiteParserStrategy {
Tests do not return anything so it is safe to consider that void always appears before test case name
*/
if (!rawTest.contains(testNamePattern)) {
return TestCaseParseResult(
error = ErrorDetails("The raw Test does not contain $testNamePattern:\n $rawTest")
)
return TestCaseParseResult(error = ErrorDetails("The raw Test does not contain $testNamePattern:\n $rawTest"))
}

/**
Expand Down

0 comments on commit 83189ac

Please sign in to comment.