Skip to content

Commit 71f57d3

Browse files
committed
[squash] Set, Dictionary tests: Update for tuple versions
1 parent 9ba4dfa commit 71f57d3

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

validation-test/stdlib/Dictionary.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3005,7 +3005,7 @@ DictionaryTestSuite.test("BridgedFromObjC.Verbatim.RemoveAll") {
30053005

30063006
DictionaryTestSuite.test("BridgedFromObjC.Nonverbatim.RemoveAll")
30073007
.skip(
3008-
.stdlibOlderThan(.custom(1001.0),
3008+
.stdlibOlderThan(.custom(1001, 0),
30093009
reason: "https://github.com/apple/swift/pull/22527"))
30103010
.code {
30113011
do {
@@ -3303,7 +3303,7 @@ DictionaryTestSuite.test("BridgedFromObjC.Verbatim.EqualityTest_Empty") {
33033303

33043304
DictionaryTestSuite.test("BridgedFromObjC.Nonverbatim.EqualityTest_Empty")
33053305
.skip(
3306-
.stdlibOlderThan(.custom(1001.0),
3306+
.stdlibOlderThan(.custom(1001, 0),
33073307
reason: "https://github.com/apple/swift/pull/22527"))
33083308
.code {
33093309
let d1 = getBridgedNonverbatimEquatableDictionary([:])

validation-test/stdlib/Set.swift

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1920,7 +1920,7 @@ SetTestSuite.test("BridgedFromObjC.Nonverbatim.Remove")
19201920

19211921
SetTestSuite.test("BridgedFromObjC.Verbatim.RemoveAll")
19221922
.skip(
1923-
.stdlibOlderThan(.custom(1001.0),
1923+
.stdlibOlderThan(.custom(1001, 0),
19241924
reason: "https://github.com/apple/swift/pull/22527"))
19251925
.code {
19261926
do {
@@ -2179,7 +2179,7 @@ SetTestSuite.test("BridgedFromObjC.Verbatim.EqualityTest_Empty") {
21792179

21802180
SetTestSuite.test("BridgedFromObjC.Nonverbatim.EqualityTest_Empty")
21812181
.skip(
2182-
.stdlibOlderThan(.custom(1001.0),
2182+
.stdlibOlderThan(.custom(1001, 0),
21832183
reason: "https://github.com/apple/swift/pull/22527"))
21842184
.code {
21852185
let s1 = getBridgedNonverbatimSet([])
@@ -4627,7 +4627,7 @@ SetTestSuite.test("IndexValidation.RemoveAt.AfterGrow") {
46274627
#if _runtime(_ObjC)
46284628
SetTestSuite.test("ForcedNonverbatimBridge.Trap.String")
46294629
.skip(
4630-
.stdlibOlderThan(.custom(1001.0),
4630+
.stdlibOlderThan(.custom(1001, 0),
46314631
reason: "https://github.com/apple/swift/pull/23174"))
46324632
.skip(.custom(
46334633
{ _isFastAssertConfiguration() },
@@ -4651,7 +4651,7 @@ SetTestSuite.test("ForcedNonverbatimBridge.Trap.String")
46514651
#if _runtime(_ObjC)
46524652
SetTestSuite.test("ForcedNonverbatimBridge.Trap.Int")
46534653
.skip(
4654-
.stdlibOlderThan(.custom(1001.0),
4654+
.stdlibOlderThan(.custom(1001, 0),
46554655
reason: "https://github.com/apple/swift/pull/23174"))
46564656
.skip(.custom(
46574657
{ _isFastAssertConfiguration() },
@@ -4784,7 +4784,7 @@ SetTestSuite.test("ForcedVerbatimDowncast.Trap.Int")
47844784
#if _runtime(_ObjC)
47854785
SetTestSuite.test("ForcedBridgingNonverbatimDowncast.Trap.String")
47864786
.skip(
4787-
.stdlibOlderThan(.custom(1001.0),
4787+
.stdlibOlderThan(.custom(1001, 0),
47884788
reason: "https://github.com/apple/swift/pull/23174"))
47894789
.skip(.custom(
47904790
{ _isFastAssertConfiguration() },
@@ -4808,7 +4808,7 @@ SetTestSuite.test("ForcedBridgingNonverbatimDowncast.Trap.String")
48084808
#if _runtime(_ObjC)
48094809
SetTestSuite.test("ForcedBridgingNonverbatimDowncast.Trap.Int")
48104810
.skip(
4811-
.stdlibOlderThan(.custom(1001.0),
4811+
.stdlibOlderThan(.custom(1001, 0),
48124812
reason: "https://github.com/apple/swift/pull/23174"))
48134813
.skip(.custom(
48144814
{ _isFastAssertConfiguration() },
@@ -4833,7 +4833,7 @@ SetTestSuite.test("ForcedBridgingNonverbatimDowncast.Trap.Int")
48334833
#if _runtime(_ObjC)
48344834
SetTestSuite.test("Upcast.StringEqualityMismatch")
48354835
.skip(
4836-
.stdlibOlderThan(.custom(1001.0),
4836+
.stdlibOlderThan(.custom(1001, 0),
48374837
reason: "https://github.com/apple/swift/pull/23683"))
48384838
.code {
48394839
// Upcasting from NSString to String keys changes their concept of equality,

0 commit comments

Comments
 (0)