From e75ca3267ccf28b3d13ab794dbbca22b9e665560 Mon Sep 17 00:00:00 2001 From: Brad Hilton Date: Fri, 28 Oct 2016 16:09:48 -0600 Subject: [PATCH] Remove @testable from PublicTests --- Tests/ReflectionTests/PublicTests.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Tests/ReflectionTests/PublicTests.swift b/Tests/ReflectionTests/PublicTests.swift index 6371f84..899410e 100644 --- a/Tests/ReflectionTests/PublicTests.swift +++ b/Tests/ReflectionTests/PublicTests.swift @@ -1,5 +1,5 @@ import XCTest -@testable import Reflection +import Reflection struct Person : Equatable { var firstName: String @@ -193,6 +193,7 @@ extension PublicTests { ("testValueForKeyOfInstance", testValueForKeyOfInstance), ("testValueIs", testValueIs), ("testMemoryProperties", testMemoryProperties), + ("testCString", testCString) ] } }