@@ -120,7 +120,7 @@ fn test(
120
120
t. pass_inline (
121
121
& converter. to_token_stream ( ) . to_string ( ) ,
122
122
& quote ! {
123
- use template :: { { format, Formattable , write} } ;
123
+ use interpolator :: { { format, Formattable , write} } ;
124
124
use std:: thread;
125
125
use std:: fmt:: Write ;
126
126
fn main( ) {
@@ -235,7 +235,7 @@ proptest! {
235
235
let format_arg = format_arg. to_string( ) ;
236
236
let format_arg = format_arg. escape_default( ) ;
237
237
t. pass_inline( "display" , & format!{ r#"
238
- use template ::{{format, Formattable}};
238
+ use interpolator ::{{format, Formattable}};
239
239
fn main() {{
240
240
assert_eq!(
241
241
format("{format_arg}", [("ident", (&"test").into())].into_iter().collect()).unwrap(),
@@ -261,7 +261,7 @@ proptest! {
261
261
let format_arg = format_arg. to_string( ) ;
262
262
let format_arg = format_arg. escape_default( ) ;
263
263
t. pass_inline( "integer" , & format!{ r#"
264
- use template ::{{format, Formattable}};
264
+ use interpolator ::{{format, Formattable}};
265
265
fn main() {{
266
266
assert_eq!(
267
267
format("{format_arg}", [("ident", Formattable::integer(&10))].into_iter().collect()).unwrap(),
@@ -281,7 +281,7 @@ proptest! {
281
281
let format_arg = format_arg. to_string( ) ;
282
282
let format_arg = format_arg. escape_default( ) ;
283
283
t. pass_inline( "float" , & format!{ r#"
284
- use template ::{{format, Formattable}};
284
+ use interpolator ::{{format, Formattable}};
285
285
fn main() {{
286
286
assert_eq!(
287
287
format("{format_arg}", [("ident", Formattable::float(&3.14))].into_iter().collect()).unwrap(),
@@ -299,7 +299,7 @@ proptest! {
299
299
let format_arg = format_arg. to_string( ) ;
300
300
let format_arg = format_arg. escape_default( ) ;
301
301
t. pass_inline( "pointer" , & format!{ r#"
302
- use template ::{{format, Formattable}};
302
+ use interpolator ::{{format, Formattable}};
303
303
fn main() {{
304
304
let p = &42;
305
305
assert_eq!(
0 commit comments