From 1959f760e73fd6b60864a19f41af72be287b2e22 Mon Sep 17 00:00:00 2001 From: finagolfin Date: Wed, 30 Oct 2024 21:25:49 +0530 Subject: [PATCH] Import new Android overlay instead in the tests (#479) I added the `Bionic` import this summer in #448 and the compiler accepted it then, but it started erroring a couple months later without this full Android overlay, so add that instead. --- Tests/NIOHTTP2Tests/TestUtilities.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tests/NIOHTTP2Tests/TestUtilities.swift b/Tests/NIOHTTP2Tests/TestUtilities.swift index 55187b9e..cce10a8f 100644 --- a/Tests/NIOHTTP2Tests/TestUtilities.swift +++ b/Tests/NIOHTTP2Tests/TestUtilities.swift @@ -24,8 +24,8 @@ import XCTest import Darwin.C #elseif canImport(Glibc) import Glibc -#elseif canImport(Bionic) -import Bionic +#elseif canImport(Android) +import Android #endif struct NoFrameReceived: Error {}