use our Result type here
This commit is contained in:
parent
91d5d59d85
commit
947528f019
2 changed files with 5 additions and 2 deletions
|
|
@ -1,3 +1,4 @@
|
|||
use super::super::error::Result;
|
||||
use lazy_static::lazy_static;
|
||||
use regex::Regex;
|
||||
use tree_sitter::Point;
|
||||
|
|
@ -20,4 +21,6 @@ struct Assertion {
|
|||
capture_type: String,
|
||||
}
|
||||
|
||||
pub fn assert_expected_captures(_captures: Vec<CaptureInfo>, _path: String) {}
|
||||
pub fn assert_expected_captures(_captures: Vec<CaptureInfo>, _path: String) -> Result<()> {
|
||||
Ok(())
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue