Fix tests

This commit is contained in:
gwenn 2019-06-25 20:47:32 +02:00
parent f1198dd9ff
commit c275cd29e0

View File

@ -688,7 +688,9 @@ mod test {
use std::f64::EPSILON;
use std::os::raw::c_double;
use crate::functions::{Aggregate, Context, WindowAggregate};
use crate::functions::{Aggregate, Context};
#[cfg(feature = "window")]
use crate::functions::WindowAggregate;
use crate::{Connection, Error, Result, NO_PARAMS};
fn half(ctx: &Context<'_>) -> Result<c_double> {