Skip to content

Commit

Permalink
remove float test from linux
Browse files Browse the repository at this point in the history
  • Loading branch information
cbaker6 committed Jan 9, 2024
1 parent 26f2e3a commit 098d3e1
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,9 @@ class ParseEncoderTests: XCTestCase {
XCTAssertEqual(decodedJSON["uint16"]?.value as? NSNumber, NSNumber(value: object.uint16))
XCTAssertEqual(decodedJSON["uint32"]?.value as? NSNumber, NSNumber(value: object.uint32))
XCTAssertEqual(decodedJSON["uint64"]?.value as? NSNumber, NSNumber(value: object.uint64))
#if !os(Linux) && !os(Android) && !os(Windows)
XCTAssertEqual(decodedJSON["float"]?.value as? Double, Double(object.float))
#endif
}

func testSkipKeysDefaultCodingKeys() throws {
Expand Down

0 comments on commit 098d3e1

Please sign in to comment.