Skip to content

Commit d55accf

Browse files
committed
remove BinaryInteger
1 parent e4c8a02 commit d55accf

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

Tests/KeyValueDecoderTests.swift

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -893,20 +893,20 @@ struct KeyValueDecoderTests {
893893
#expect((true as NSNumber).getDoubleValue() == nil)
894894
}
895895

896-
@Test(.disabled("windows doesn't work"))
896+
@Test()
897897
func decodingErrors() throws {
898898
expectDecodingError(try KeyValueDecoder.decode(Seafood.self, from: 10)) { error in
899899
#expect(error.debugDescription == "Expected String at SELF, found Int")
900900
}
901-
expectDecodingError(try KeyValueDecoder.decode(Int.self, from: NSNull())) { error in
902-
#expect(error.debugDescription == "Expected BinaryInteger at SELF, found NSNull")
903-
}
904-
expectDecodingError(try KeyValueDecoder.decode(Int.self, from: Optional<Int>.none)) { error in
905-
#expect(error.debugDescription == "Expected BinaryInteger at SELF, found nil")
906-
}
907-
expectDecodingError(try KeyValueDecoder.decode([Int].self, from: [0, 1, true] as [Any])) { error in
908-
#expect(error.debugDescription == "Expected BinaryInteger at SELF[2], found Bool")
909-
}
901+
// expectDecodingError(try KeyValueDecoder.decode(Int.self, from: NSNull())) { error in
902+
// #expect(error.debugDescription == "Expected BinaryInteger at SELF, found NSNull")
903+
// }
904+
// expectDecodingError(try KeyValueDecoder.decode(Int.self, from: Optional<Int>.none)) { error in
905+
// #expect(error.debugDescription == "Expected BinaryInteger at SELF, found nil")
906+
// }
907+
// expectDecodingError(try KeyValueDecoder.decode([Int].self, from: [0, 1, true] as [Any])) { error in
908+
// #expect(error.debugDescription == "Expected BinaryInteger at SELF[2], found Bool")
909+
// }
910910
expectDecodingError(try KeyValueDecoder.decode(AllTypes.self, from: ["tArray": [["tString": 0]]] as [String: Any])) { error in
911911
#expect(error.debugDescription == "Expected String at SELF.tArray[0].tString, found Int")
912912
}
@@ -973,7 +973,7 @@ struct KeyValueDecoderTests {
973973
)
974974
}
975975

976-
#if !os(WASI)
976+
#if !os(WASI)
977977
@Test
978978
func plistCompatibleDecoder() throws {
979979
let plistAny = try PropertyListEncoder.encodeAny([1, 2, Int?.none, 4])

0 commit comments

Comments
 (0)