diff --git a/noir-projects/aztec-nr/aztec/src/state_vars/public_mutable.nr b/noir-projects/aztec-nr/aztec/src/state_vars/public_mutable.nr index 92d61704fa49..a1ea5468c434 100644 --- a/noir-projects/aztec-nr/aztec/src/state_vars/public_mutable.nr +++ b/noir-projects/aztec-nr/aztec/src/state_vars/public_mutable.nr @@ -2,6 +2,8 @@ use crate::context::{PublicContext, UtilityContext}; use crate::protocol::traits::Packable; use crate::state_vars::StateVariable; +mod test; + /// Mutable public values. /// /// This is one of the most basic public state variables. It is equivalent to a non-`immutable` non-`constant` Solidity diff --git a/noir-projects/aztec-nr/aztec/src/state_vars/public_mutable/test.nr b/noir-projects/aztec-nr/aztec/src/state_vars/public_mutable/test.nr index 29154c42d466..3c07e5bf1fbc 100644 --- a/noir-projects/aztec-nr/aztec/src/state_vars/public_mutable/test.nr +++ b/noir-projects/aztec-nr/aztec/src/state_vars/public_mutable/test.nr @@ -1,4 +1,4 @@ -use crate::{context::{PublicContext, UtilityContext}, state_vars::PublicMutable}; +use crate::{context::{PublicContext, UtilityContext}, state_vars::{PublicMutable, StateVariable}}; use crate::test::{helpers::test_environment::TestEnvironment, mocks::MockStruct}; use std::mem::zeroed;