File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
src/test/java/com/microsoft/graph/functional Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 6565import com .microsoft .graph .serializer .DefaultSerializer ;
6666import com .microsoft .graph .logger .ILogger ;
6767import com .microsoft .graph .models .CalendarGetScheduleParameterSet ;
68+ import com .microsoft .graph .requests .CalendarGetScheduleCollectionPage ;
6869@ Disabled
6970public class OutlookTests {
7071
@@ -396,7 +397,8 @@ public void testGetSchedule() throws Exception {
396397 .withStartTime (startTime )
397398 .withAvailabilityViewInterval (60 )
398399 .build ();
399- testBase .graphClient .me ().calendar ().getSchedule (paramSet )
400+ final CalendarGetScheduleCollectionPage resultPage = testBase .graphClient .me ().calendar ().getSchedule (paramSet )
400401 .buildRequest ().post ();
402+ assertNotNull (resultPage );
401403 }
402404}
You can’t perform that action at this time.
0 commit comments