Skip to content

Commit

Permalink
Silence some warnings we cannot fix
Browse files Browse the repository at this point in the history
See #127 for
more info.
  • Loading branch information
davidpdrsn committed Oct 17, 2020
1 parent b57ea84 commit 4c5b9f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions juniper-from-schema/tests/doc_test.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#![recursion_limit = "128"]
#![allow(dead_code)]
#![allow(unused_braces)]
#![deny(deprecated)]

extern crate juniper;
Expand Down
1 change: 1 addition & 0 deletions juniper-from-schema/tests/end_to_end_test.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#![allow(dead_code, unused_variables, unused_imports)]
#![allow(unused_braces)]

use assert_json_diff::assert_json_include;
use juniper::{Executor, FieldResult, Variables, ID};
Expand Down

0 comments on commit 4c5b9f2

Please sign in to comment.