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