Skip to content

Commit d103a3b

Browse files
committed
fix typos
1 parent 03d7863 commit d103a3b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

clion-plugin/src/main/kotlin/org/utbot/cpp/clion/plugin/grpc/GrpcRequestBuilder.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ data class RemoteMapping(val localProjectPath: String, val remoteProjectPath: St
2424
val remoteProjectNioPath = try {
2525
Paths.get(remoteProjectPath)
2626
} catch (_: InvalidPathException) {
27-
throw IllegalPathException(path, UTBot.message("settings.project.remotePath.wrong"))
27+
throw IllegalPathException(remoteProjectPath, UTBot.message("settings.project.remotePath"))
2828
}
2929
val relativeToProjectNioPath = try {
3030
localProjectNioPath.relativize(Paths.get(path))

clion-plugin/src/main/resources/messages/UTBot.properties

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ settings.project.testsDir=Tests directory:
1111
settings.project.testsDir.wrong=Wrong relative path to tests directory
1212
settings.project.sourcePaths.wrong.conversion=Possibly wrong source path. Could not create relative path from remote path or this path
1313
settings.project.remotePath=Path to project on remote machine
14-
settings.project.remotePath.wrong=Bad remote path
1514
settings.project.serverName=Server host name
1615
settings.project.port=Server port
1716
settings.project.cmakeOptions=Cmake options

0 commit comments

Comments
 (0)