use our Result type here

This commit is contained in:
Patrick Thomson 2020-10-21 12:49:41 -04:00
parent 91d5d59d85
commit 947528f019
2 changed files with 5 additions and 2 deletions

View file

@ -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(())
}