We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a0509f commit c975069Copy full SHA for c975069
benches/graphql.rs
@@ -10,7 +10,7 @@ use graphql_parser::parse_query;
10
11
fn load_file(name: &str) -> String {
12
let mut buf = String::with_capacity(1024);
13
- let path = format!("tests/samples/{}.graphql", name);
+ let path = format!("tests/queries/{}.graphql", name);
14
let mut f = File::open(&path).unwrap();
15
f.read_to_string(&mut buf).unwrap();
16
buf
0 commit comments