From fdadc8d5372420542a3623348b8ffc370813ca55 Mon Sep 17 00:00:00 2001 From: "github-classroom[bot]" <66690702+github-classroom[bot]@users.noreply.github.com> Date: Tue, 27 Sep 2022 22:30:09 +0000 Subject: [PATCH 1/2] Setting up GitHub Classroom Feedback From 86fd948d32b3333d4da329451b9a6529753c62e9 Mon Sep 17 00:00:00 2001 From: TheUncleLake <100882470+TheUncleLake@users.noreply.github.com> Date: Mon, 28 Nov 2022 11:18:41 -0500 Subject: [PATCH 2/2] fixed assert_eq --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 055c9c0..8199a65 100644 --- a/src/main.rs +++ b/src/main.rs @@ -6,6 +6,6 @@ fn main() { mod tests { #[test] fn it_works() { - assert_eq!(1 + 1, 3); // Fix this line! Both sides should be equal. + assert_eq!(1 + 1, 2); // Fix this line! Both sides should be equal. } } \ No newline at end of file