Skip to content

Commit 5514b8e

Browse files
committed
PR feedback: Use core field format
1 parent 803c666 commit 5514b8e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

platform/jvm/capture/src/main/kotlin/io/bitdrift/capture/attributes/ClientAttributes.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ internal class ClientAttributes(
8383
// Device model name.
8484
"model" to model,
8585
// Device manufacturer name.
86-
"manufacturer" to manufacturer,
86+
"_manufacturer" to manufacturer,
8787
// The SDK level (e.g. 35).
8888
"_os_api_level" to osApiLevel.toString(),
8989
// The version of this package, as specified by the manifest's `versionName` attribute.

platform/jvm/capture/src/test/kotlin/io/bitdrift/capture/attributes/ClientAttributesTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ class ClientAttributesTest {
260260

261261
val fields = clientAttributes.invoke()
262262

263-
assertThat(fields).containsEntry("manufacturer", "unknown")
263+
assertThat(fields).containsEntry("_manufacturer", "unknown")
264264
}
265265

266266
@Test

0 commit comments

Comments
 (0)