Skip to content

Commit a14664a

Browse files
authored
Merge pull request #13162 from paulmenage/fix-integer-test
Fix typo in 32-bit portion of Integers test
2 parents 1d7715b + 428d95b commit a14664a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/stdlib/Integers.swift.gyb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,7 @@ tests.test("words") {
524524
expectEqualSequence([(1 as UInt) << 63], Int64.min.words)
525525
expectEqualSequence([UInt.max], (-1 as Int64).words)
526526
% else:
527-
expectEqualSequence([UInt.max, UInt.max], Int64.max.words)
527+
expectEqualSequence([UInt.max, UInt.max], UInt64.max.words)
528528
expectEqualSequence([0 as UInt, 0], UInt64.min.words)
529529
expectEqualSequence([UInt.max, UInt.max >> 1], Int64.max.words)
530530
expectEqualSequence([0 as UInt, 1 << 31], Int64.min.words)

0 commit comments

Comments
 (0)