Skip to content

Commit f133a00

Browse files
Bump com.google.guava:guava from 33.4.0-jre to 33.4.6-jre (#190)
* Bump com.google.guava:guava from 33.4.0-jre to 33.4.6-jre Bumps [com.google.guava:guava](https://github.com/google/guava) from 33.4.0-jre to 33.4.6-jre. - [Release notes](https://github.com/google/guava/releases) - [Commits](https://github.com/google/guava/commits) --- updated-dependencies: - dependency-name: com.google.guava:guava dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * Fix compilation --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marat Radchenko <[email protected]>
1 parent 70a3668 commit f133a00

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ subprojects {
6161
dependencies {
6262
api("com.google.code.findbugs:jsr305:3.0.2")
6363

64-
testImplementation("com.google.guava:guava:33.4.0-jre")
64+
testImplementation("com.google.guava:guava:33.4.6-jre")
6565
testImplementation("org.testng:testng:7.11.0")
6666
}
6767

gitlfs-common/src/test/kotlin/ru/bozaro/gitlfs/common/data/BatchResTest.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class BatchResTest {
3333
Assert.assertEquals(link.href, URI("https://some-download.com"))
3434
Assert.assertEquals(
3535
link.header,
36-
ImmutableMap.builder<Any?, Any?>()
36+
ImmutableMap.builder<Any, Any>()
3737
.put("Authorization", "Basic ...")
3838
.build()
3939
)

gitlfs-common/src/test/kotlin/ru/bozaro/gitlfs/common/data/LinkTest.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class LinkTest {
2222
Assert.assertNotNull(link)
2323
Assert.assertEquals(link.href, URI("https://storage-server.com/OID"))
2424
Assert.assertEquals(link.header,
25-
ImmutableMap.builder<Any?, Any?>()
25+
ImmutableMap.builder<Any, Any>()
2626
.put("Authorization", "Basic ...")
2727
.build()
2828
)
@@ -35,7 +35,7 @@ class LinkTest {
3535
Assert.assertNotNull(link)
3636
Assert.assertEquals(link.href, URI("https://api.github.com/lfs/bozaro/git-lfs-java"))
3737
Assert.assertEquals(link.header,
38-
ImmutableMap.builder<Any?, Any?>()
38+
ImmutableMap.builder<Any, Any>()
3939
.put("Authorization", "RemoteAuth secret")
4040
.build()
4141
)

gitlfs-common/src/test/kotlin/ru/bozaro/gitlfs/common/data/ObjectResTest.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class ObjectResTest {
3232
Assert.assertNotNull(link)
3333
Assert.assertEquals(link.href, URI("https://storage-server.com/OID"))
3434
Assert.assertEquals(link.header,
35-
ImmutableMap.builder<Any?, Any?>()
35+
ImmutableMap.builder<Any, Any>()
3636
.put("Authorization", "Basic ...")
3737
.build()
3838
)
@@ -49,7 +49,7 @@ class ObjectResTest {
4949
Assert.assertNotNull(link)
5050
Assert.assertEquals(link.href, URI("https://some-upload.com"))
5151
Assert.assertEquals(link.header,
52-
ImmutableMap.builder<Any?, Any?>()
52+
ImmutableMap.builder<Any, Any>()
5353
.put("Authorization", "Basic ...")
5454
.build()
5555
)

0 commit comments

Comments
 (0)