We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dec56db commit c577e46Copy full SHA for c577e46
1 file changed
tests/test.rs
@@ -96,7 +96,7 @@ fn test_unix_connection() {
96
}
97
98
let unix_socket_directory = unix_socket_directories.as_slice()
99
- .splitn(',', 1).next().unwrap();
+ .split(',').next().unwrap();
100
101
let url = format!("postgres://postgres@{}", url::encode_component(unix_socket_directory));
102
let conn = or_fail!(PostgresConnection::connect(url.as_slice(), &NoSsl));
0 commit comments