From cf76a83a7f601cc9577d2fe7fab181fead20d2b0 Mon Sep 17 00:00:00 2001 From: bluss Date: Sat, 5 Aug 2017 18:21:43 +0200 Subject: [PATCH] BUG: Fix import of CapacityError in tests --- tests/tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests.rs b/tests/tests.rs index 0b88576..66529c9 100644 --- a/tests/tests.rs +++ b/tests/tests.rs @@ -4,7 +4,7 @@ extern crate arrayvec; use arrayvec::ArrayVec; use arrayvec::ArrayString; use std::mem; -use arrayvec::errors::CapacityError; +use arrayvec::CapacityError; use std::collections::HashMap;