From 0e0352920baadd4e6473cfffa32706c765bde38a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Quenaudon?= Date: Fri, 22 Aug 2025 09:12:58 +0100 Subject: [PATCH] Move the Android test README under the androidTest directory (#9031) And opt-in to compile without errors --- android-test/{ => src/androidTest}/README.md | 0 .../src/test/java/okhttp3/brotli/BrotliInterceptorTest.kt | 4 ++++ 2 files changed, 4 insertions(+) rename android-test/{ => src/androidTest}/README.md (100%) diff --git a/android-test/README.md b/android-test/src/androidTest/README.md similarity index 100% rename from android-test/README.md rename to android-test/src/androidTest/README.md diff --git a/okhttp-brotli/src/test/java/okhttp3/brotli/BrotliInterceptorTest.kt b/okhttp-brotli/src/test/java/okhttp3/brotli/BrotliInterceptorTest.kt index 76cd2dc4a..3a4d1e614 100644 --- a/okhttp-brotli/src/test/java/okhttp3/brotli/BrotliInterceptorTest.kt +++ b/okhttp-brotli/src/test/java/okhttp3/brotli/BrotliInterceptorTest.kt @@ -13,6 +13,10 @@ * See the License for the specific language governing permissions and * limitations under the License. */ +@file:Suppress( + "INVISIBLE_REFERENCE", +) + package okhttp3.brotli import assertk.assertThat