From f4449e198ea3cfa6006f74ba0c9b0bfda1588016 Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Sat, 28 Sep 2024 22:25:35 -0700 Subject: [PATCH] Fix error in EntityDecodingTests. --- Modules/Parser/Tests/ParserTests/EntityDecodingTests.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/Parser/Tests/ParserTests/EntityDecodingTests.swift b/Modules/Parser/Tests/ParserTests/EntityDecodingTests.swift index 15560de5f..04761ab35 100644 --- a/Modules/Parser/Tests/ParserTests/EntityDecodingTests.swift +++ b/Modules/Parser/Tests/ParserTests/EntityDecodingTests.swift @@ -153,5 +153,5 @@ func stringForResource(_ filename: String, _ fileExtension: String) -> String { func decodedString(_ s: String) -> String { - HTMLEntityDecoder.decodedString(s)! + HTMLEntityDecoder.decodedString(s) }