diff --git a/uguid/tests/ui/guid_hex.stderr b/uguid/tests/ui/guid_hex.stderr index 9d2a549..07437ab 100644 --- a/uguid/tests/ui/guid_hex.stderr +++ b/uguid/tests/ui/guid_hex.stderr @@ -2,6 +2,6 @@ error[E0080]: evaluation of constant value failed --> tests/ui/guid_hex.rs:12:14 | 12 | let _g = guid!("g1234567-89ab-cdef-0123-456789abcdef"); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the evaluated program panicked at 'GUID string contains one or more invalid characters', $DIR/tests/ui/guid_hex.rs:12:14 + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ evaluation panicked: GUID string contains one or more invalid characters | = note: this error originates in the macro `guid` (in Nightly builds, run with -Z macro-backtrace for more info) diff --git a/uguid/tests/ui/guid_len.stderr b/uguid/tests/ui/guid_len.stderr index ee271ff..ac11a68 100644 --- a/uguid/tests/ui/guid_len.stderr +++ b/uguid/tests/ui/guid_len.stderr @@ -2,6 +2,6 @@ error[E0080]: evaluation of constant value failed --> tests/ui/guid_len.rs:12:14 | 12 | let _g = guid!("1234"); - | ^^^^^^^^^^^^^ the evaluated program panicked at 'GUID string has wrong length (expected 36 bytes)', $DIR/tests/ui/guid_len.rs:12:14 + | ^^^^^^^^^^^^^ evaluation panicked: GUID string has wrong length (expected 36 bytes) | = note: this error originates in the macro `guid` (in Nightly builds, run with -Z macro-backtrace for more info) diff --git a/uguid/tests/ui/guid_sep.stderr b/uguid/tests/ui/guid_sep.stderr index bffd8c0..965f96a 100644 --- a/uguid/tests/ui/guid_sep.stderr +++ b/uguid/tests/ui/guid_sep.stderr @@ -2,6 +2,6 @@ error[E0080]: evaluation of constant value failed --> tests/ui/guid_sep.rs:12:14 | 12 | let _g = guid!("01234567089ab-cdef-0123-456789abcdef"); - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the evaluated program panicked at 'GUID string is missing one or more separators (`-`)', $DIR/tests/ui/guid_sep.rs:12:14 + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ evaluation panicked: GUID string is missing one or more separators (`-`) | = note: this error originates in the macro `guid` (in Nightly builds, run with -Z macro-backtrace for more info)