From 8824d2a43d8b2fcbed7e132d59a3c93c0a8d4d40 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sat, 13 Feb 2016 21:07:02 -0800 Subject: [PATCH] Enable tests for macaddr --- tests/types/mod.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/types/mod.rs b/tests/types/mod.rs index 9b7f7aee..9ebd6196 100644 --- a/tests/types/mod.rs +++ b/tests/types/mod.rs @@ -10,6 +10,8 @@ use postgres::types::{ToSql, FromSql, Slice, WrongType, Type, IsNull, Kind, Sess #[cfg(feature = "bit-vec")] mod bit_vec; +#[cfg(feature = "eui48")] +mod eui48; #[cfg(feature = "uuid")] mod uuid; #[cfg(feature = "time")]