From c5ecfe67bcf021dc8ec9bfff150bb3027b10f66e Mon Sep 17 00:00:00 2001 From: raychu86 <14917648+raychu86@users.noreply.github.com> Date: Tue, 10 Sep 2024 16:32:31 -0400 Subject: [PATCH] Fix file line count --- circuit/environment/src/helpers/updatable_count.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circuit/environment/src/helpers/updatable_count.rs b/circuit/environment/src/helpers/updatable_count.rs index 5c6842e5b4..122db5c861 100644 --- a/circuit/environment/src/helpers/updatable_count.rs +++ b/circuit/environment/src/helpers/updatable_count.rs @@ -499,7 +499,7 @@ mod test { fn check_position() { let count = count_is!(0, 0, 0, 0); assert_eq!(count.file, "circuit/environment/src/helpers/updatable_count.rs"); - assert_eq!(count.line, 499); + assert_eq!(count.line, 500); assert_eq!(count.column, 21); }