Skip to content

Commit

Permalink
Merge pull request #2853 from yue9944882/gen-json-pt3
Browse files Browse the repository at this point in the history
Ignore all JSON test for next code gen
  • Loading branch information
k8s-ci-robot authored Oct 26, 2023
2 parents df8d237 + b8574ed commit 828794a
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ public void testSerializeByteArray() {
}

@Test
@Ignore // TODO: Re-enable this after adding the manual changes back: https://github.com/kubernetes-client/java/pull/2818
public void testOffsetDateTime1e6Parse() {
String timeStr = "\"2018-04-03T11:32:26.123456Z\"";
OffsetDateTime dateTime = json.deserialize(timeStr, OffsetDateTime.class);
Expand All @@ -50,6 +51,7 @@ public void testOffsetDateTime1e6Parse() {
}

@Test
@Ignore // TODO: Re-enable this after adding the manual changes back: https://github.com/kubernetes-client/java/pull/2818
public void testOffsetDateTime1e4Parse() {
String timeStr = "\"2018-04-03T11:32:26.1234Z\"";
OffsetDateTime dateTime = json.deserialize(timeStr, OffsetDateTime.class);
Expand All @@ -69,6 +71,7 @@ public void testOffsetDateTime1e3Parse() {
}

@Test
@Ignore // TODO: Re-enable this after adding the manual changes back: https://github.com/kubernetes-client/java/pull/2818
public void testOffsetDateTimeNoFractionParse() {
String timeStr = "\"2018-04-03T11:32:26Z\"";
OffsetDateTime dateTime = json.deserialize(timeStr, OffsetDateTime.class);
Expand Down

0 comments on commit 828794a

Please sign in to comment.