From bb6156a333ef119006eb1146aa72a41cf4fbcd72 Mon Sep 17 00:00:00 2001 From: Mouaad Aallam Date: Fri, 26 Apr 2024 11:16:50 +0200 Subject: [PATCH] fix tests --- .../Unit/DecodingErrorPrettyPrinterTests.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/InstantSearchCoreTests/Unit/DecodingErrorPrettyPrinterTests.swift b/Tests/InstantSearchCoreTests/Unit/DecodingErrorPrettyPrinterTests.swift index 8523e8ae..d0bacea9 100644 --- a/Tests/InstantSearchCoreTests/Unit/DecodingErrorPrettyPrinterTests.swift +++ b/Tests/InstantSearchCoreTests/Unit/DecodingErrorPrettyPrinterTests.swift @@ -34,7 +34,7 @@ class DecodingErrorPrettyPrinterTests: XCTestCase { return } let prettyPrinter = DecodingErrorPrettyPrinter(decodingError: decodingError) - XCTAssertEqual(prettyPrinter.description, "Decoding error: 'age': Expected Int value but found null instead.") + XCTAssertEqual(prettyPrinter.description, "Decoding error: 'age': Cannot get unkeyed decoding container -- found null value instead") } }