We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7331c0 commit 1961cf8Copy full SHA for 1961cf8
src/test/java/com/microsoft/graph/functional/UserTests.java
@@ -76,6 +76,7 @@ public void userKeyTest() {
76
//GET users('<<key>>')
77
IUserCollectionPage userCollectionPage = graphServiceClient.users().buildRequest().get();
78
assertNotNull(userCollectionPage);
79
+ assertNotNull(userCollectionPage.additionalDataManager().get("graphResponseHeaders"));
80
List<User> list = userCollectionPage.getCurrentPage();
81
if(list.size() > 0) {
82
User user = graphServiceClient.users(list.get(0).id).buildRequest().get();
0 commit comments