Fix typos in tests' panic messages
This commit is contained in:
parent
834d7c139b
commit
bbebf83749
@ -741,12 +741,12 @@ fn test_execute_copy_from_err() {
|
|||||||
let stmt = or_panic!(conn.prepare("COPY foo (id) FROM STDIN"));
|
let stmt = or_panic!(conn.prepare("COPY foo (id) FROM STDIN"));
|
||||||
match stmt.execute(&[]) {
|
match stmt.execute(&[]) {
|
||||||
Err(Error::DbError(ref err)) if err.message().contains("COPY") => {}
|
Err(Error::DbError(ref err)) if err.message().contains("COPY") => {}
|
||||||
Err(err) => panic!("Unexptected error {:?}", err),
|
Err(err) => panic!("Unexpected error {:?}", err),
|
||||||
_ => panic!("Expected error"),
|
_ => panic!("Expected error"),
|
||||||
}
|
}
|
||||||
match stmt.query(&[]) {
|
match stmt.query(&[]) {
|
||||||
Err(Error::DbError(ref err)) if err.message().contains("COPY") => {}
|
Err(Error::DbError(ref err)) if err.message().contains("COPY") => {}
|
||||||
Err(err) => panic!("Unexptected error {:?}", err),
|
Err(err) => panic!("Unexpected error {:?}", err),
|
||||||
_ => panic!("Expected error"),
|
_ => panic!("Expected error"),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -757,7 +757,7 @@ fn test_batch_execute_copy_from_err() {
|
|||||||
or_panic!(conn.execute("CREATE TEMPORARY TABLE foo (id INT)", &[]));
|
or_panic!(conn.execute("CREATE TEMPORARY TABLE foo (id INT)", &[]));
|
||||||
match conn.batch_execute("COPY foo (id) FROM STDIN") {
|
match conn.batch_execute("COPY foo (id) FROM STDIN") {
|
||||||
Err(Error::DbError(ref err)) if err.message().contains("COPY") => {}
|
Err(Error::DbError(ref err)) if err.message().contains("COPY") => {}
|
||||||
Err(err) => panic!("Unexptected error {:?}", err),
|
Err(err) => panic!("Unexpected error {:?}", err),
|
||||||
_ => panic!("Expected error"),
|
_ => panic!("Expected error"),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user