Skip to content

Commit c975069

Browse files
author
Vincent Prouillet
committed
Fix benches
1 parent 9a0509f commit c975069

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benches/graphql.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ use graphql_parser::parse_query;
1010

1111
fn load_file(name: &str) -> String {
1212
let mut buf = String::with_capacity(1024);
13-
let path = format!("tests/samples/{}.graphql", name);
13+
let path = format!("tests/queries/{}.graphql", name);
1414
let mut f = File::open(&path).unwrap();
1515
f.read_to_string(&mut buf).unwrap();
1616
buf

0 commit comments

Comments
 (0)