From 650561f88558b4991031ef5f8f50c4d466faab99 Mon Sep 17 00:00:00 2001
From: Jane Keibler <wanderingelf14@gmail.com>
Date: Thu, 19 Oct 2017 12:22:43 -0400
Subject: [PATCH] Removing configuration that rust nightly

The feature function causes the following error:
error[E0554]: #![feature] may not be used on the stable release channel
---
 juniper/src/lib.rs | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/juniper/src/lib.rs b/juniper/src/lib.rs
index c7a8b1cd..2ffb8803 100644
--- a/juniper/src/lib.rs
+++ b/juniper/src/lib.rs
@@ -115,11 +115,8 @@ To support this, Juniper offers additional crates that integrate with popular we
 [object_integrations]: integrations/index.html
 
 */
-#![cfg_attr(feature = "nightly", feature(test))]
 #![warn(missing_docs)]
 
-#[cfg(feature = "nightly")]
-extern crate test;
 extern crate serde;
 #[macro_use]
 extern crate serde_derive;