Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
bachish committed Sep 7, 2024
1 parent 4beebeb commit 2ae7117
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion benchmarks/src/main/kotlin/Benchmarks.kt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import java8.JavaToken
import org.ucfs.JavaToken
import org.ucfs.JavaLexer
import org.ucfs.input.*
import org.ucfs.rsm.symbol.Term
Expand Down
4 changes: 2 additions & 2 deletions benchmarks/src/test/kotlin/TimeParsingBenchmark.kt
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ import kotlin.io.path.name
abstract class TimeParsingBenchmark {
val version: String = LocalDateTime.now().format(
DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm"))
private val repeatCount: Int = 5
private val repeatCount: Int = 1
lateinit var file: File


private fun initFolder(): DynamicTest {
val resultPath = Path.of("src", "test", "result")
val resultPath = Path.of("src", "test", "result", getShortName())
return dynamicTest("initiation for ${getShortName()}") {
Files.createDirectories(resultPath)
file = File(resultPath.toString(), "${getShortName()}_$version.csv")
Expand Down

0 comments on commit 2ae7117

Please sign in to comment.