@@ -55,7 +55,7 @@ mod tests {
55
55
#[ test]
56
56
fn translate_vector_of_rust_string_to_cpp ( ) {
57
57
let vec: Vec < String > = vec ! [
58
- "/tmp /example.c" . to_owned( ) ,
58
+ "other /example.c" . to_owned( ) ,
59
59
"/tmp/example2.c" . to_owned( ) ] ;
60
60
61
61
let vect = ffi:: translate_vector_of_string ( vec) ;
@@ -71,7 +71,7 @@ mod tests {
71
71
} ;
72
72
73
73
let vec: Vec < String > = vec ! [
74
- "/tmp /example.c" . to_owned( ) ] ;
74
+ "other /example.c" . to_owned( ) ] ;
75
75
76
76
let vect = ffi:: translate_vector_of_string ( vec) ;
77
77
assert_eq ! ( vect. len( ) , 1 ) ;
@@ -91,7 +91,7 @@ mod tests {
91
91
let client = ffi:: new_api_session ( ) ;
92
92
93
93
let vec: Vec < String > = vec ! [
94
- "/tmp /example.c" . to_owned( ) ] ;
94
+ "other /example.c" . to_owned( ) ] ;
95
95
96
96
let vect = ffi:: translate_vector_of_string ( vec) ;
97
97
client. load_model_from_files ( vect) ;
@@ -114,7 +114,7 @@ mod tests {
114
114
} ;
115
115
116
116
let vec: Vec < String > = vec ! [
117
- "/tmp /example.c" . to_owned( ) ] ;
117
+ "other /example.c" . to_owned( ) ] ;
118
118
119
119
let vect = ffi:: translate_vector_of_string ( vec) ;
120
120
assert_eq ! ( vect. len( ) , 1 ) ;
0 commit comments