Update testsuite to match new panic msg

This patch fixes tests from failing that were matching on `Box<Any>`,
which was the old panic message. Since the new panic message is `Box<dyn
Any>`, the tests have been updated to match against this instead.
This commit is contained in:
Reagan McFarland 2021-06-06 19:38:53 -04:00
parent eb3fd6d208
commit 8330233ba7
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
// run-fail
// error-pattern:panicked at 'Box<Any>'
// error-pattern:panicked at 'Box<dyn Any>'
// ignore-emscripten no processes
#![allow(non_fmt_panic)]

View file

@ -1,5 +1,5 @@
// run-fail
// error-pattern:panicked at 'Box<Any>'
// error-pattern:panicked at 'Box<dyn Any>'
// ignore-emscripten no processes
#![feature(box_syntax)]