Skip to content

Commit 2e46974

Browse files
stainless-app[bot]stainless-bot
authored andcommitted
chore(internal): version bump (#3)
1 parent cac5569 commit 2e46974

File tree

2 files changed

+20
-6
lines changed

2 files changed

+20
-6
lines changed

openlayer-java-core/src/test/kotlin/org/openlayer/models/CommitTestResultListResponseTest.kt

+10-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ package org.openlayer.models
55
import java.time.OffsetDateTime
66
import org.assertj.core.api.Assertions.assertThat
77
import org.junit.jupiter.api.Test
8-
import org.openlayer.core.JsonNull
98
import org.openlayer.core.JsonValue
109

1110
class CommitTestResultListResponseTest {
@@ -43,7 +42,11 @@ class CommitTestResultListResponseTest {
4342
.dateArchived(OffsetDateTime.parse("2024-03-22T11:31:01.185Z"))
4443
.dateCreated(OffsetDateTime.parse("2024-03-22T11:31:01.185Z"))
4544
.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+
)
4750
.name("No duplicate rows")
4851
.number(123L)
4952
.originProjectVersionId("3fa85f64-5717-4562-b3fc-2c963f66afa6")
@@ -114,7 +117,11 @@ class CommitTestResultListResponseTest {
114117
.dateArchived(OffsetDateTime.parse("2024-03-22T11:31:01.185Z"))
115118
.dateCreated(OffsetDateTime.parse("2024-03-22T11:31:01.185Z"))
116119
.dateUpdated(OffsetDateTime.parse("2024-03-22T11:31:01.185Z"))
117-
.description(JsonNull.of())
120+
.description(
121+
JsonValue.from(
122+
"This test checks for duplicate rows in the dataset."
123+
)
124+
)
118125
.name("No duplicate rows")
119126
.number(123L)
120127
.originProjectVersionId("3fa85f64-5717-4562-b3fc-2c963f66afa6")

openlayer-java-core/src/test/kotlin/org/openlayer/models/InferencePipelineTestResultListResponseTest.kt

+10-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ package org.openlayer.models
55
import java.time.OffsetDateTime
66
import org.assertj.core.api.Assertions.assertThat
77
import org.junit.jupiter.api.Test
8-
import org.openlayer.core.JsonNull
98
import org.openlayer.core.JsonValue
109

1110
class InferencePipelineTestResultListResponseTest {
@@ -43,7 +42,11 @@ class InferencePipelineTestResultListResponseTest {
4342
.dateArchived(OffsetDateTime.parse("2024-03-22T11:31:01.185Z"))
4443
.dateCreated(OffsetDateTime.parse("2024-03-22T11:31:01.185Z"))
4544
.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+
)
4750
.name("No duplicate rows")
4851
.number(123L)
4952
.originProjectVersionId("3fa85f64-5717-4562-b3fc-2c963f66afa6")
@@ -117,7 +120,11 @@ class InferencePipelineTestResultListResponseTest {
117120
.dateArchived(OffsetDateTime.parse("2024-03-22T11:31:01.185Z"))
118121
.dateCreated(OffsetDateTime.parse("2024-03-22T11:31:01.185Z"))
119122
.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+
)
121128
.name("No duplicate rows")
122129
.number(123L)
123130
.originProjectVersionId("3fa85f64-5717-4562-b3fc-2c963f66afa6")

0 commit comments

Comments
 (0)