Fix build

This commit is contained in:
Steven Fackler 2016-12-26 16:31:18 -05:00
parent 2562d01796
commit 87034feb2b

View File

@ -10,15 +10,6 @@ use error::{Error, ConnectError, SqlState};
use params::{ConnectParams, ConnectTarget, UserInfo};
use types::{ToSql, FromSql, Type, SessionInfo, IsNull, Kind};
#[test]
fn basic() {
let mut l = Core::new().unwrap();
let handle = l.handle();
let done = Connection::connect("postgres://postgres@localhost", TlsMode::None, &handle)
.then(|c| c.unwrap().close());
l.run(done).unwrap();
}
#[test]
fn md5_user() {
let mut l = Core::new().unwrap();