Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump org.assertj:assertj-core from 3.25.3 to 3.26.3 #1043

Merged
merged 1 commit into from
Aug 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ dependencies {
androidTestImplementation espressoCore
androidTestImplementation espressoIdlingResource
androidTestImplementation androidTestRunner
androidTestImplementation 'org.assertj:assertj-core:3.25.3'
androidTestImplementation 'org.assertj:assertj-core:3.26.3'
androidTestImplementation project(':core-testing')
androidTestImplementation project(':core-android-testing')
androidTestImplementation coroutinesJvm
Expand Down
2 changes: 1 addition & 1 deletion core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ dependencies {
implementation frescoOkHttp

testImplementation 'junit:junit:4.13.2'
testImplementation 'org.assertj:assertj-core:3.25.3'
testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation okHttpMockWebServer

testImplementation project(':core-testing')
Expand Down
2 changes: 1 addition & 1 deletion feature/about/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,5 @@ dependencies {

androidTestImplementation 'junit:junit:4.13.2'
androidTestImplementation espressoCore
androidTestImplementation 'org.assertj:assertj-core:3.25.3'
androidTestImplementation 'org.assertj:assertj-core:3.26.3'
}
2 changes: 1 addition & 1 deletion feature/config-debug/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ dependencies {

testImplementation 'junit:junit:4.13.2'
testImplementation project(':core-testing')
testImplementation 'org.assertj:assertj-core:3.25.3'
testImplementation 'org.assertj:assertj-core:3.26.3'
}
2 changes: 1 addition & 1 deletion feature/identity/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ dependencies {
implementation dagger

testImplementation 'junit:junit:4.13.2'
testImplementation 'org.assertj:assertj-core:3.25.3'
testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation okHttpMockWebServer
}
2 changes: 1 addition & 1 deletion feature/performance/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ dependencies {
implementation "androidx.metrics:metrics-performance:1.0.0-beta01"

testImplementation 'junit:junit:4.13.2'
testImplementation 'org.assertj:assertj-core:3.25.3'
testImplementation 'org.assertj:assertj-core:3.26.3'
}
2 changes: 1 addition & 1 deletion feature/push/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ dependencies {
implementation 'org.threeten:threetenbp:1.5.1:no-tzdb'

testImplementation 'junit:junit:4.13.2'
testImplementation 'org.assertj:assertj-core:3.25.3'
testImplementation 'org.assertj:assertj-core:3.26.3'
}
2 changes: 1 addition & 1 deletion feature/repo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ dependencies {
testImplementation okHttpMockWebServer
testImplementation okHttpLoggingInterceptor
testImplementation 'junit:junit:4.13.2'
testImplementation 'org.assertj:assertj-core:3.25.3'
testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation project(':core-testing')
testImplementation 'androidx.arch.core:core-testing:2.2.0'
testImplementation 'com.jraska.livedata:testing-ktx:1.3.0'
Expand Down
2 changes: 1 addition & 1 deletion feature/settings/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ dependencies {
kapt daggerAnnotationProcessor

testImplementation 'junit:junit:4.13.2'
testImplementation 'org.assertj:assertj-core:3.25.3'
testImplementation 'org.assertj:assertj-core:3.26.3'
}
4 changes: 2 additions & 2 deletions feature/users/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@ dependencies {

testImplementation 'com.jraska.livedata:testing-ktx:1.3.0'
testImplementation 'junit:junit:4.13.2'
testImplementation 'org.assertj:assertj-core:3.25.3'
testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation 'androidx.arch.core:core-testing:2.2.0'
testImplementation okHttpMockWebServer
testImplementation project(':core-testing')
kaptTest daggerAnnotationProcessor

androidTestImplementation 'junit:junit:4.13.2'
androidTestImplementation espressoCore
androidTestImplementation 'org.assertj:assertj-core:3.25.3'
androidTestImplementation 'org.assertj:assertj-core:3.26.3'
androidTestImplementation androidTestRunner

kaptAndroidTest daggerAnnotationProcessor
Expand Down
2 changes: 1 addition & 1 deletion plugins/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dependencies {
implementation okHttpLoggingInterceptor

testImplementation 'junit:junit:4.13.2'
testImplementation 'org.assertj:assertj-core:3.25.3'
testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation okHttpMockWebServer
}

Expand Down
Loading