Skip to content

Commit 3d37379

Browse files
committed
do not compare request & response
1 parent 9b09f15 commit 3d37379

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/test/java/com/datadog/api/client/v1/api/DashboardsApiTest.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -832,7 +832,6 @@ public void dashboardLifecycleTest() throws ApiException {
832832
.addWidgetsItem(toplistWidget)
833833
.title(getUniqueEntityName("ordered"))
834834
.description("Test dashboard for Java client")
835-
.isReadOnly(false)
836835
.templateVariables(templateVariables)
837836
.addTemplateVariablePresetsItem(dashboardTemplateVariablePreset)
838837
.addNotifyListItem("test@datadoghq.com");
@@ -858,7 +857,6 @@ public void dashboardLifecycleTest() throws ApiException {
858857
.addWidgetsItem(serviceSummaryWidget)
859858
.title(getUniqueEntityName("free"))
860859
.description("Test Free layout dashboard for Java client")
861-
.isReadOnly(false)
862860
.templateVariables(templateVariables);
863861
Dashboard createFreeResponse = api.createDashboard(freeDashboard);
864862
cleanupDashIDs.add(createFreeResponse.getId());
@@ -868,7 +866,6 @@ public void dashboardLifecycleTest() throws ApiException {
868866
// Assert root dashboard items on the create response
869867
assertEquals(dashboard.getTitle(), response.getTitle());
870868
assertEquals(dashboard.getDescription(), response.getDescription());
871-
assertEquals(dashboard.getIsReadOnly(), response.getIsReadOnly());
872869
// The end of the url is a normalized version fo the title, so lets just check the beginning of
873870
// the URL
874871
assertTrue(response.getUrl().contains(String.format("/dashboard/%s", response.getId())));

0 commit comments

Comments
 (0)