diff --git a/external-crates/move/crates/move-compiler/tests/move_2024/typing/macros_types_checked_invalid_constraints_simple.snap b/external-crates/move/crates/move-compiler/tests/move_2024/typing/macros_types_checked_invalid_constraints_simple.snap index 5a568bde70275..ce7cf15330252 100644 --- a/external-crates/move/crates/move-compiler/tests/move_2024/typing/macros_types_checked_invalid_constraints_simple.snap +++ b/external-crates/move/crates/move-compiler/tests/move_2024/typing/macros_types_checked_invalid_constraints_simple.snap @@ -14,7 +14,7 @@ error[E05001]: ability constraint not satisfied │ ---- 'copy' constraint declared here · 7 │ macro fun bar<$T>(_: NeedsCopy<$T>) {} - │ ^^^^^^^^^^^^^ 'copy' constraint not satisifed + │ ^^^^^^^^^^^^^ 'copy' constraint not satisfied · 14 │ bar!(NeedsCopy {}); │ ---- The type 'a::m::None' does not have the ability 'copy' @@ -28,7 +28,7 @@ error[E05001]: ability constraint not satisfied │ ---- 'copy' constraint declared here · 9 │ macro fun baz<$T>(): NeedsCopy<$T> { abort 0 } - │ ^^^^^^^^^^^^^ 'copy' constraint not satisifed + │ ^^^^^^^^^^^^^ 'copy' constraint not satisfied · 18 │ baz!() │ ---- The type 'a::m::None' does not have the ability 'copy'