Skip to content

Commit b255d1d

Browse files
authored
Merge pull request #1227 from microsoftgraph/dependabot/gradle/com.microsoft.graph-microsoft-graph-core-2.0.14
Bump microsoft-graph-core from 2.0.13 to 2.0.14
2 parents 9bc79fc + 4e3ea5c commit b255d1d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

gradle/dependencies.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ dependencies {
1111
implementation 'com.squareup.okhttp3:okhttp:4.10.0'
1212

1313
// Core Http library
14-
api 'com.microsoft.graph:microsoft-graph-core:2.0.13'
14+
api 'com.microsoft.graph:microsoft-graph-core:2.0.14'
1515
}

src/test/java/com/microsoft/graph/telemetry/VersionHeader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ public void testHeader() {
1717
final BaseRequest<Void> request = new BaseRequest<Void>("https://a.b.c/", GraphServiceClient.builder().authenticationProvider(mock(IAuthenticationProvider.class)).buildClient(), null, Void.class){};
1818
assertEquals(1, request.getHeaders().size());
1919
assertEquals("SdkVersion", request.getHeaders().get(0).getName());
20-
assertEquals(String.format(BaseRequest.REQUEST_STATS_HEADER_VALUE_FORMAT_STRING, Constants.VERSION_NAME), request.getHeaders().get(0).getValue());
20+
assertEquals(BaseRequest.REQUEST_STATS_HEADER_VALUE_FORMAT_STRING.concat(Constants.VERSION_NAME), request.getHeaders().get(0).getValue());
2121
}
2222
}

0 commit comments

Comments
 (0)