File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1235,7 +1235,7 @@ struct ComparisonTest {
1235
1235
) {
1236
1236
self . lhs = lhs
1237
1237
self . rhs = rhs
1238
- self . behavior = expectedFailure . isEmpty ? . run : . expectedFailure( reason)
1238
+ self . behavior = reason . isEmpty ? . run : . expectedFailure( reason)
1239
1239
self . loc = line
1240
1240
}
1241
1241
@@ -1245,12 +1245,12 @@ struct ComparisonTest {
1245
1245
) {
1246
1246
self . lhs = lhs
1247
1247
self . rhs = rhs
1248
- self . behavior = skip . isEmpty ? . run : . skip( reason)
1248
+ self . behavior = reason . isEmpty ? . run : . skip( reason)
1249
1249
self . loc = line
1250
1250
}
1251
1251
}
1252
1252
1253
- let comparisonTests = [
1253
+ let comparisonTests : [ ComparisonTest ] = [
1254
1254
ComparisonTest ( " " , " " ) ,
1255
1255
ComparisonTest ( " " , " a " ) ,
1256
1256
You can’t perform that action at this time.
0 commit comments