Skip to content

Commit c0567f0

Browse files
committed
fix: with prompted result
1 parent d6ec798 commit c0567f0

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

clion-plugin/src/main/kotlin/org/utbot/cpp/clion/plugin/actions/generate/GenerateForPredicateAction.kt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -224,14 +224,14 @@ class GenerateForPredicateAction : BaseGenerateTestsAction() {
224224
)
225225

226226
private val integerBounds = mapOf(
227-
ValidationType.INT8_T to intBoundsBySize(8, false),
228-
ValidationType.INT16_T to intBoundsBySize(16, false),
229-
ValidationType.INT32_T to intBoundsBySize(32, false),
230-
ValidationType.INT64_T to intBoundsBySize(64, false),
231-
ValidationType.UINT8_T to intBoundsBySize(8, true),
232-
ValidationType.UINT16_T to intBoundsBySize(16, true),
233-
ValidationType.UINT32_T to intBoundsBySize(32, true),
234-
ValidationType.UINT64_T to intBoundsBySize(64, true)
227+
ValidationType.INT8_T to intBoundsBySize(8, true),
228+
ValidationType.INT16_T to intBoundsBySize(16, true),
229+
ValidationType.INT32_T to intBoundsBySize(32, true),
230+
ValidationType.INT64_T to intBoundsBySize(64, true),
231+
ValidationType.UINT8_T to intBoundsBySize(8, false),
232+
ValidationType.UINT16_T to intBoundsBySize(16, false),
233+
ValidationType.UINT32_T to intBoundsBySize(32, false),
234+
ValidationType.UINT64_T to intBoundsBySize(64, false)
235235
)
236236

237237
sealed class ValidationResult {

clion-plugin/src/main/kotlin/org/utbot/cpp/clion/plugin/client/requests/test/FunctionReturnTypeRequest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class FunctionReturnTypeRequest(
1313
val processReturnType: suspend (FunctionTypeResponse)->(Unit)
1414
) : BaseRequest<Testgen.FunctionRequest, FunctionTypeResponse>(request, project) {
1515

16-
override val logMessage: String = "Sending request to generate tests for class"
16+
override val logMessage: String = "Sending request to get function return type"
1717

1818
override suspend fun FunctionTypeResponse.handle(cancellationJob: Job?) = processReturnType(this)
1919

0 commit comments

Comments
 (0)