Skip to content

Commit

Permalink
Merge pull request #87 from KingOfBrian/bugfix/32bitCIFailure
Browse files Browse the repository at this point in the history
Fix CI Failure on 32bit platforms
  • Loading branch information
jarsen authored Dec 5, 2016
2 parents 8715487 + 108f91c commit 3450ce3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions MarshalTests/MarshalTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -346,8 +346,8 @@ class MarshalTests: XCTestCase {
"missing": NSNull(),
"small": 2,
"medium": 66_000,
"large": 4_200_000_000,
"huge": 9_000_000_000_000_000_000,
"large": Int.max / 2,
"huge": Int.max,
"decimal": 1.2,
"array": [ "a", "b", "c" ],
"nested": [
Expand All @@ -373,8 +373,8 @@ class MarshalTests: XCTestCase {
XCTAssertNil(missing)
XCTAssertEqual(small, 2)
XCTAssertEqual(medium, 66_000)
XCTAssertEqual(large, 4_200_000_000)
XCTAssertEqual(huge, 9_000_000_000_000_000_000)
XCTAssertEqual(large, Int.max / 2)
XCTAssertEqual(huge, Int.max)
XCTAssertEqual(decimal, 1.2)
XCTAssertEqual(array, [ "a", "b", "c" ])
XCTAssertEqual(nested as! [String:String], [ "key": "value" ])
Expand Down

0 comments on commit 3450ce3

Please sign in to comment.