Skip to content

Commit

Permalink
add testBatchID in raw json report
Browse files Browse the repository at this point in the history
  • Loading branch information
karthyks committed Jan 22, 2024
1 parent 3091a90 commit a0c5156
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ class RawJsonReporter(
metaPropertiesList,
it.device.serialNumber,
it.testResult.status,
it.testResult.testBatchId,
it.testResult.isIgnored,
it.testResult.isSuccess,
it.testResult.startTime,
Expand All @@ -49,6 +50,7 @@ class RawJsonReporter(
@SerializedName("metaProperties") val metaProperties: List<StringMetaProperty>,
@SerializedName("deviceSerial") val deviceSerial: String,
@SerializedName("status") val status: TestStatus,
@SerializedName("testBatchId") val testBatchId: String,
@SerializedName("ignored") val ignored: Boolean,
@SerializedName("success") val success: Boolean,
@SerializedName("timestamp") val timestamp: Long,
Expand Down

0 comments on commit a0c5156

Please sign in to comment.