File tree 4 files changed +6
-6
lines changed
gitlfs-common/src/test/kotlin/ru/bozaro/gitlfs/common/data
4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ subprojects {
61
61
dependencies {
62
62
api(" com.google.code.findbugs:jsr305:3.0.2" )
63
63
64
- testImplementation(" com.google.guava:guava:33.4.0 -jre" )
64
+ testImplementation(" com.google.guava:guava:33.4.6 -jre" )
65
65
testImplementation(" org.testng:testng:7.11.0" )
66
66
}
67
67
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ class BatchResTest {
33
33
Assert .assertEquals(link.href, URI (" https://some-download.com" ))
34
34
Assert .assertEquals(
35
35
link.header,
36
- ImmutableMap .builder<Any ? , Any ? >()
36
+ ImmutableMap .builder<Any , Any >()
37
37
.put(" Authorization" , " Basic ..." )
38
38
.build()
39
39
)
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ class LinkTest {
22
22
Assert .assertNotNull(link)
23
23
Assert .assertEquals(link.href, URI (" https://storage-server.com/OID" ))
24
24
Assert .assertEquals(link.header,
25
- ImmutableMap .builder<Any ? , Any ? >()
25
+ ImmutableMap .builder<Any , Any >()
26
26
.put(" Authorization" , " Basic ..." )
27
27
.build()
28
28
)
@@ -35,7 +35,7 @@ class LinkTest {
35
35
Assert .assertNotNull(link)
36
36
Assert .assertEquals(link.href, URI (" https://api.github.com/lfs/bozaro/git-lfs-java" ))
37
37
Assert .assertEquals(link.header,
38
- ImmutableMap .builder<Any ? , Any ? >()
38
+ ImmutableMap .builder<Any , Any >()
39
39
.put(" Authorization" , " RemoteAuth secret" )
40
40
.build()
41
41
)
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ class ObjectResTest {
32
32
Assert .assertNotNull(link)
33
33
Assert .assertEquals(link.href, URI (" https://storage-server.com/OID" ))
34
34
Assert .assertEquals(link.header,
35
- ImmutableMap .builder<Any ? , Any ? >()
35
+ ImmutableMap .builder<Any , Any >()
36
36
.put(" Authorization" , " Basic ..." )
37
37
.build()
38
38
)
@@ -49,7 +49,7 @@ class ObjectResTest {
49
49
Assert .assertNotNull(link)
50
50
Assert .assertEquals(link.href, URI (" https://some-upload.com" ))
51
51
Assert .assertEquals(link.header,
52
- ImmutableMap .builder<Any ? , Any ? >()
52
+ ImmutableMap .builder<Any , Any >()
53
53
.put(" Authorization" , " Basic ..." )
54
54
.build()
55
55
)
You can’t perform that action at this time.
0 commit comments