@@ -17,7 +17,7 @@ final class OmitReturnsTests: LintOrFormatRuleTestCase {
17
17
}
18
18
""" ,
19
19
findings: [
20
- FindingSpec ( " 1️⃣ " , message: " ` return` can be omitted because body consists of a single expression" )
20
+ FindingSpec ( " 1️⃣ " , message: " ' return' can be omitted because body consists of a single expression" )
21
21
] )
22
22
}
23
23
@@ -35,7 +35,7 @@ final class OmitReturnsTests: LintOrFormatRuleTestCase {
35
35
}
36
36
""" ,
37
37
findings: [
38
- FindingSpec ( " 1️⃣ " , message: " ` return` can be omitted because body consists of a single expression" )
38
+ FindingSpec ( " 1️⃣ " , message: " ' return' can be omitted because body consists of a single expression" )
39
39
] )
40
40
}
41
41
@@ -75,8 +75,8 @@ final class OmitReturnsTests: LintOrFormatRuleTestCase {
75
75
}
76
76
""" ,
77
77
findings: [
78
- FindingSpec ( " 1️⃣ " , message: " ` return` can be omitted because body consists of a single expression" ) ,
79
- FindingSpec ( " 2️⃣ " , message: " ` return` can be omitted because body consists of a single expression" )
78
+ FindingSpec ( " 1️⃣ " , message: " ' return' can be omitted because body consists of a single expression" ) ,
79
+ FindingSpec ( " 2️⃣ " , message: " ' return' can be omitted because body consists of a single expression" )
80
80
] )
81
81
}
82
82
@@ -112,8 +112,8 @@ final class OmitReturnsTests: LintOrFormatRuleTestCase {
112
112
}
113
113
""" ,
114
114
findings: [
115
- FindingSpec ( " 1️⃣ " , message: " ` return` can be omitted because body consists of a single expression" ) ,
116
- FindingSpec ( " 2️⃣ " , message: " ` return` can be omitted because body consists of a single expression" )
115
+ FindingSpec ( " 1️⃣ " , message: " ' return' can be omitted because body consists of a single expression" ) ,
116
+ FindingSpec ( " 2️⃣ " , message: " ' return' can be omitted because body consists of a single expression" )
117
117
] )
118
118
}
119
119
}
0 commit comments