Skip to content

Commit 19e92da

Browse files
authored
Allow unused variables in "Not Yet Implemented" tests (#196)
1 parent 7e9991f commit 19e92da

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

partiql-conformance-test-generator/src/generator.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ fn test_case_to_function(test_case: &TestCase) -> Function {
5555
Assertion::NotYetImplemented => {
5656
// for `NotYetImplemented` assertions, add the 'ignore' annotation to the test case
5757
test_fn.attr("ignore = \"not yet implemented\"");
58+
test_fn.attr("allow(unused_variables)");
5859
}
5960
}
6061
}

0 commit comments

Comments
 (0)