@@ -5,7 +5,6 @@ package org.openlayer.models
5
5
import java.time.OffsetDateTime
6
6
import org.assertj.core.api.Assertions.assertThat
7
7
import org.junit.jupiter.api.Test
8
- import org.openlayer.core.JsonNull
9
8
import org.openlayer.core.JsonValue
10
9
11
10
class InferencePipelineTestResultListResponseTest {
@@ -43,7 +42,11 @@ class InferencePipelineTestResultListResponseTest {
43
42
.dateArchived(OffsetDateTime .parse(" 2024-03-22T11:31:01.185Z" ))
44
43
.dateCreated(OffsetDateTime .parse(" 2024-03-22T11:31:01.185Z" ))
45
44
.dateUpdated(OffsetDateTime .parse(" 2024-03-22T11:31:01.185Z" ))
46
- .description(JsonNull .of())
45
+ .description(
46
+ JsonValue .from(
47
+ " This test checks for duplicate rows in the dataset."
48
+ )
49
+ )
47
50
.name(" No duplicate rows" )
48
51
.number(123L )
49
52
.originProjectVersionId(" 3fa85f64-5717-4562-b3fc-2c963f66afa6" )
@@ -117,7 +120,11 @@ class InferencePipelineTestResultListResponseTest {
117
120
.dateArchived(OffsetDateTime .parse(" 2024-03-22T11:31:01.185Z" ))
118
121
.dateCreated(OffsetDateTime .parse(" 2024-03-22T11:31:01.185Z" ))
119
122
.dateUpdated(OffsetDateTime .parse(" 2024-03-22T11:31:01.185Z" ))
120
- .description(JsonNull .of())
123
+ .description(
124
+ JsonValue .from(
125
+ " This test checks for duplicate rows in the dataset."
126
+ )
127
+ )
121
128
.name(" No duplicate rows" )
122
129
.number(123L )
123
130
.originProjectVersionId(" 3fa85f64-5717-4562-b3fc-2c963f66afa6" )
0 commit comments