@@ -127,7 +127,7 @@ fn key_cannot_be_empty() {
127
127
}
128
128
129
129
#[ test]
130
- fn no_params_with_semicolons ( ) -> Result < ( ) , ParsingError > {
130
+ fn no_params_with_colons ( ) -> Result < ( ) , ParsingError > {
131
131
let input = "https::" ;
132
132
let config = parse_conf_str ( input) ?;
133
133
assert_eq ! ( config. service( ) , "https" ) ;
@@ -136,7 +136,7 @@ fn no_params_with_semicolons() -> Result<(), ParsingError> {
136
136
}
137
137
138
138
#[ test]
139
- fn no_params_no_semicolons ( ) -> Result < ( ) , ParsingError > {
139
+ fn no_params_no_colons ( ) -> Result < ( ) , ParsingError > {
140
140
let input = "https" ;
141
141
let config = parse_conf_str ( input) ?;
142
142
assert_eq ! ( config. service( ) , "https" ) ;
@@ -187,7 +187,7 @@ fn url_as_service_separator() {
187
187
}
188
188
189
189
#[ test]
190
- fn no_service_name_with_semicolons ( ) {
190
+ fn no_service_name_with_colons ( ) {
191
191
let input = "::host=localhost;" ;
192
192
let config = parse_conf_str ( input) ;
193
193
assert ! ( config. is_err( ) ) ;
@@ -201,7 +201,7 @@ fn no_service_name_with_semicolons() {
201
201
}
202
202
203
203
#[ test]
204
- fn no_service_name_no_semicolons ( ) {
204
+ fn no_service_name_no_colons ( ) {
205
205
let input = "host=localhost;" ;
206
206
let config = parse_conf_str ( input) ;
207
207
assert ! ( config. is_err( ) ) ;
0 commit comments