Assert instead of asssert
This commit is contained in:
@@ -15,14 +15,13 @@ fn main() {
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
|
||||
mod tests {
|
||||
use super::*;
|
||||
|
||||
#[test]
|
||||
fn test_1() {
|
||||
let test_input = include_str!("../test.txt");
|
||||
asssert_eq!(solve_1(test_input), _);
|
||||
assert_eq!(solve_1(test_input), _);
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
||||
Reference in New Issue
Block a user