@@ -6,7 +6,7 @@ use the_module::
66  AsTable , 
77  TableRows , 
88  WithRef , 
9-   print, 
9+   // the_module:: print,
1010} ; 
1111
1212use  std:: 
@@ -63,7 +63,7 @@ fn dlist_basic()
6363  assert_eq ! (  rows. len( ) ,  2  ) ; 
6464
6565  let  mut  output = String :: new ( ) ; 
66-   let  mut  context = print:: Context :: new (  & mut  output,  Default :: default ( )  ) ; 
66+   let  mut  context = the_module :: print:: Context :: new (  & mut  output,  Default :: default ( )  ) ; 
6767  let  _got = the_module:: TableFormatter :: fmt (  & as_table,  & mut  context ) ; 
6868  let  got = as_table. table_to_string ( ) ; 
6969  assert ! (  got. contains(  "│ id │ created_at │          file_ids          │           tools            │"  )  ) ; 
@@ -119,7 +119,7 @@ fn hmap_basic()
119119  assert_eq ! (  rows. len( ) ,  2  ) ; 
120120
121121  let  mut  output = String :: new ( ) ; 
122-   let  mut  context = print:: Context :: new (  & mut  output,  Default :: default ( )  ) ; 
122+   let  mut  context = the_module :: print:: Context :: new (  & mut  output,  Default :: default ( )  ) ; 
123123  let  _got = the_module:: TableFormatter :: fmt (  & as_table,  & mut  context ) ; 
124124  let  got = as_table. table_to_string ( ) ; 
125125  assert ! (  got. contains(  "│ id │ created_at │          file_ids          │           tools            │"  )  ) ; 
@@ -175,7 +175,7 @@ fn bmap_basic()
175175  assert_eq ! (  rows. len( ) ,  2  ) ; 
176176
177177  let  mut  output = String :: new ( ) ; 
178-   let  mut  context = print:: Context :: new (  & mut  output,  Default :: default ( )  ) ; 
178+   let  mut  context = the_module :: print:: Context :: new (  & mut  output,  Default :: default ( )  ) ; 
179179  let  _got = the_module:: TableFormatter :: fmt (  & as_table,  & mut  context ) ; 
180180  let  got = as_table. table_to_string ( ) ; 
181181  assert ! (  got. contains(  "│ id │ created_at │          file_ids          │           tools            │"  )  ) ; 
@@ -229,7 +229,7 @@ fn bset_basic()
229229  assert_eq ! (  rows. len( ) ,  2  ) ; 
230230
231231  let  mut  output = String :: new ( ) ; 
232-   let  mut  context = print:: Context :: new (  & mut  output,  Default :: default ( )  ) ; 
232+   let  mut  context = the_module :: print:: Context :: new (  & mut  output,  Default :: default ( )  ) ; 
233233  let  _got = the_module:: TableFormatter :: fmt (  & as_table,  & mut  context ) ; 
234234  let  got = as_table. table_to_string ( ) ; 
235235  assert ! (  got. contains(  "│ id │ created_at │          file_ids          │           tools            │"  )  ) ; 
@@ -283,7 +283,7 @@ fn deque_basic()
283283  assert_eq ! (  rows. len( ) ,  2  ) ; 
284284
285285  let  mut  output = String :: new ( ) ; 
286-   let  mut  context = print:: Context :: new (  & mut  output,  Default :: default ( )  ) ; 
286+   let  mut  context = the_module :: print:: Context :: new (  & mut  output,  Default :: default ( )  ) ; 
287287  let  _got = the_module:: TableFormatter :: fmt (  & as_table,  & mut  context ) ; 
288288  let  got = as_table. table_to_string ( ) ; 
289289  assert ! (  got. contains(  "│ id │ created_at │          file_ids          │           tools            │"  )  ) ; 
@@ -337,7 +337,7 @@ fn hset_basic()
337337  assert_eq ! (  rows. len( ) ,  2  ) ; 
338338
339339  let  mut  output = String :: new ( ) ; 
340-   let  mut  context = print:: Context :: new (  & mut  output,  Default :: default ( )  ) ; 
340+   let  mut  context = the_module :: print:: Context :: new (  & mut  output,  Default :: default ( )  ) ; 
341341  let  _got = the_module:: TableFormatter :: fmt (  & as_table,  & mut  context ) ; 
342342  let  got = as_table. table_to_string ( ) ; 
343343  assert ! (  got. contains(  "│ id │ created_at │          file_ids          │           tools            │"  )  ) ; 
@@ -391,7 +391,7 @@ fn llist_basic()
391391  assert_eq ! (  rows. len( ) ,  2  ) ; 
392392
393393  let  mut  output = String :: new ( ) ; 
394-   let  mut  context = print:: Context :: new (  & mut  output,  Default :: default ( )  ) ; 
394+   let  mut  context = the_module :: print:: Context :: new (  & mut  output,  Default :: default ( )  ) ; 
395395  let  _got = the_module:: TableFormatter :: fmt (  & as_table,  & mut  context ) ; 
396396  let  got = as_table. table_to_string ( ) ; 
397397  assert ! (  got. contains(  "│ id │ created_at │          file_ids          │           tools            │"  )  ) ; 
0 commit comments