Skip to content

Commit

Permalink
[test] Simplify expression in a test
Browse files Browse the repository at this point in the history
This expression became too complex due to the changes introduced in
swiftlang/swift#11044
  • Loading branch information
Max Moiseev committed Jul 24, 2017
1 parent ee8221b commit d00d1bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TestFoundation/TestNSDecimal.swift
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ class TestNSDecimal: XCTestCase {
_length: 0xff,
_isNegative: 3,
_isCompact: 4,
_reserved: UInt32(1<<18 + 1<<17 + 1),
_reserved: 1<<18 + 1<<17 + 1,
_mantissa: (6, 7, 8, 9, 10, 11, 12, 13)
)
XCTAssertEqual(0x7f, explicit._exponent)
Expand Down

0 comments on commit d00d1bc

Please sign in to comment.