Skip to content

Commit d9b3b8b

Browse files
committed
fixed linting issues
1 parent eb637b4 commit d9b3b8b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

kotlin-sdk-core/src/commonTest/kotlin/io/modelcontextprotocol/kotlin/sdk/ToolSerializationTest.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ class ToolSerializationTest {
9797
),
9898
_meta = buildJsonObject {
9999
put("_for_test_only", JsonPrimitive(true))
100-
}
100+
},
101101
)
102102

103103
//region Serialize
@@ -418,7 +418,7 @@ class ToolSerializationTest {
418418
name: String = "get_weather",
419419
title: String? = null,
420420
outputSchema: String? = null,
421-
_meta: String? = null
421+
@Suppress("LocalVariableName") _meta: String? = null,
422422
): String {
423423
val stringBuilder = StringBuilder()
424424

@@ -499,7 +499,7 @@ class ToolSerializationTest {
499499
required = listOf("location"),
500500
),
501501
outputSchema = outputSchema,
502-
_meta = _meta
502+
_meta = _meta,
503503
)
504504

505505
//endregion Private Methods

0 commit comments

Comments
 (0)