Skip to content

Commit ae3cea7

Browse files
committed
Actually fix feature tests
1 parent 0df9b32 commit ae3cea7

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ before_script:
1010
- "./.travis/setup.sh"
1111
script:
1212
- cargo test
13-
- cargo test --features $(cargo read-manifest | jq -r '.features|keys|map(select(. != "with-security-framework"))|join(" ")')
13+
- cargo test --features "$(cargo read-manifest | jq -r '.features|keys|map(select(. != "with-security-framework"))|join(" ")')"

tests/types/mod.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@ use std::error;
33
use std::f32;
44
use std::f64;
55
use std::fmt;
6-
use std::io::{Read, Write};
76
use std::result;
87

9-
use postgres::{Connection, TlsMode, Result};
8+
use postgres::{Connection, TlsMode};
109
use postgres::error::Error;
1110
use postgres::types::{ToSql, FromSql, WrongType, Type, IsNull, Kind, SessionInfo};
1211

0 commit comments

Comments
 (0)