Skip to content

Commit

Permalink
Merge pull request #1031 from nextcloud/dependabot/gradle/com.android…
Browse files Browse the repository at this point in the history
….tools.build-gradle-7.4.0

Bump gradle from 7.3.1 to 7.4.0
  • Loading branch information
tobiasKaminsky authored Jan 16, 2023
2 parents 2269f41 + 0f4a46a commit c2739fd
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Fri Sep 16 08:12:41 CEST 2022
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
2 changes: 1 addition & 1 deletion library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
lombokVersion = "1.18.24"
}
dependencies {
classpath 'com.android.tools.build:gradle:7.3.1'
classpath 'com.android.tools.build:gradle:7.4.0'
classpath 'com.hiya:jacoco-android:0.2'
classpath 'com.github.spotbugs.snom:spotbugs-gradle-plugin:5.0.13'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ import org.junit.Assert
import org.junit.Assume
import org.junit.Before
import org.junit.Test
import java.util.ArrayList

class GetHoverCardRemoteOperationIT : AbstractIT() {
@Before
Expand All @@ -48,9 +47,9 @@ class GetHoverCardRemoteOperationIT : AbstractIT() {

@Test
fun testHoverCard() {
val result = GetHoverCardRemoteOperation(nextcloudClient.userId)
val result = GetHoverCardRemoteOperation(nextcloudClient.userId + "123")
.execute(nextcloudClient)
Assert.assertTrue(result.isSuccess)
Assert.assertTrue(result.logMessage, result.isSuccess)
val hoverCard = result.resultData
Assert.assertEquals(nextcloudClient.userId, hoverCard?.userId)
}
Expand Down
2 changes: 1 addition & 1 deletion sample_client/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
buildscript {
dependencies {
classpath 'com.android.tools.build:gradle:7.3.1'
classpath 'com.android.tools.build:gradle:7.4.0'
classpath 'com.hiya:jacoco-android:0.2'
classpath 'com.github.spotbugs.snom:spotbugs-gradle-plugin:5.0.13'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
Expand Down

0 comments on commit c2739fd

Please sign in to comment.