MINOR: add :server-common test dependency to :storage (#12488)

Fix a bug in the KAFKA-14124 PR where a gradle test dependency was missing.
This causes missing test class exceptions.

Reviewers: Ismael Juma <ismael@juma.me.uk>
This commit is contained in:
Colin Patrick McCabe 2022-08-05 19:17:50 -07:00 committed by GitHub
parent fdc19fbe21
commit 8a1a8a9168
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -1619,6 +1619,8 @@ project(':storage') {
testImplementation project(':clients').sourceSets.test.output
testImplementation project(':core')
testImplementation project(':core').sourceSets.test.output
testImplementation project(':server-common')
testImplementation project(':server-common').sourceSets.test.output
testImplementation libs.junitJupiter
testImplementation libs.mockitoCore
testImplementation libs.bcpkix