File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
gitlfs-common/src/test/kotlin/ru/bozaro/gitlfs/common/data Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 )
Original file line number Diff line number Diff 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 )
Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments