about summary refs log tree commit diff
path: root/tests/ui/consts/const-unwrap.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/consts/const-unwrap.rs')
-rw-r--r--tests/ui/consts/const-unwrap.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/consts/const-unwrap.rs b/tests/ui/consts/const-unwrap.rs
index ea0a15af1be..d48078a0834 100644
--- a/tests/ui/consts/const-unwrap.rs
+++ b/tests/ui/consts/const-unwrap.rs
@@ -5,7 +5,7 @@ const FOO: i32 = Some(42i32).unwrap();
 
 const BAR: i32 = Option::<i32>::None.unwrap();
 //~^ ERROR: evaluation of constant value failed
-//~| NOTE: the evaluated program panicked
+//~| NOTE: called `Option::unwrap()` on a `None` value
 
 const BAZ: i32 = Option::<i32>::None.expect("absolutely not!");
 //~^ ERROR: evaluation of constant value failed