diff --git a/Package.resolved b/Package.resolved index 953589b..197631c 100644 --- a/Package.resolved +++ b/Package.resolved @@ -1,6 +1,15 @@ { "object": { "pins": [ + { + "package": "FineJSON", + "repositoryURL": "https://github.com/omochi/FineJSON.git", + "state": { + "branch": null, + "revision": "05101709243cb66d80c92e645210a3b80cf4e17f", + "version": "1.14.0" + } + }, { "package": "OpenAPIKit", "repositoryURL": "https://github.com/mattpolzin/OpenAPIKit.git", @@ -10,6 +19,15 @@ "version": "2.0.0-alpha.4" } }, + { + "package": "RichJSONParser", + "repositoryURL": "https://github.com/omochi/RichJSONParser.git", + "state": { + "branch": null, + "revision": "263e2ecfe88d0500fa99e4cbc8c948529d335534", + "version": "3.0.0" + } + }, { "package": "Sampleable", "repositoryURL": "https://github.com/mattpolzin/Sampleable.git", @@ -18,6 +36,15 @@ "revision": "df44bf1a860481109dcf455e3c6daf0a0f1bc259", "version": "2.1.0" } + }, + { + "package": "Yams", + "repositoryURL": "https://github.com/jpsim/Yams.git", + "state": { + "branch": null, + "revision": "81a65c4069c28011ee432f2858ba0de49b086677", + "version": "3.0.1" + } } ] }, diff --git a/Tests/OpenAPIReflectionTests/GenericOpenAPISchemaTests.swift b/Tests/OpenAPIReflectionTests/GenericOpenAPISchemaTests.swift index 4bc7a17..e564697 100644 --- a/Tests/OpenAPIReflectionTests/GenericOpenAPISchemaTests.swift +++ b/Tests/OpenAPIReflectionTests/GenericOpenAPISchemaTests.swift @@ -412,7 +412,7 @@ extension GenericOpenAPISchemaTests { self.val = val } - init?(rawValue: Self.RawValue) { + init?(rawValue: String) { self.val = rawValue } } diff --git a/Tests/OpenAPIReflectionTests/TestHelpers.swift b/Tests/OpenAPIReflectionTests/TestHelpers.swift index a75ea64..fe16e58 100644 --- a/Tests/OpenAPIReflectionTests/TestHelpers.swift +++ b/Tests/OpenAPIReflectionTests/TestHelpers.swift @@ -56,7 +56,7 @@ func assertJSONEquivalent(_ str1: String?, _ str2: String?, file: StaticString = XCTAssertEqual( str1, str2, - file: file, + file: (file), line: line ) }