From 4ed771f68a13a67cd51c4cbea80f231120bc4fb7 Mon Sep 17 00:00:00 2001 From: Tristan Labelle Date: Sun, 8 Dec 2024 08:50:23 -0500 Subject: [PATCH] Fix test errors --- InteropTests/Tests/FlatModuleTests.swift | 4 ++-- InteropTests/Tests/NamespaceModuleTests.swift | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/InteropTests/Tests/FlatModuleTests.swift b/InteropTests/Tests/FlatModuleTests.swift index 3935faa..221629e 100644 --- a/InteropTests/Tests/FlatModuleTests.swift +++ b/InteropTests/Tests/FlatModuleTests.swift @@ -2,5 +2,5 @@ import UWP_Flat // Compile-time tests that the UWP_Flat flat module // exposes short names for types in that module. -typealias MemoryBufferExists = MemoryBuffer // From UWP_WindowsFoundation -typealias IBufferExists = IBuffer // From UWP_WindowsStorageStreams \ No newline at end of file +fileprivate typealias MemoryBufferExists = MemoryBuffer // From UWP_WindowsFoundation +fileprivate typealias IBufferExists = IBuffer // From UWP_WindowsStorageStreams \ No newline at end of file diff --git a/InteropTests/Tests/NamespaceModuleTests.swift b/InteropTests/Tests/NamespaceModuleTests.swift index 866fcd8..f30f8d4 100644 --- a/InteropTests/Tests/NamespaceModuleTests.swift +++ b/InteropTests/Tests/NamespaceModuleTests.swift @@ -2,4 +2,4 @@ import UWP_WindowsFoundation // Compile-time tests that the UWP_WindowsFoundation namespace module // exposes short names for types in that namespace. -typealias MemoryBufferExists = MemoryBuffer \ No newline at end of file +fileprivate typealias MemoryBufferExists = MemoryBuffer \ No newline at end of file