From e45c0ada494563dd95d25e12358601ac0f39cdd5 Mon Sep 17 00:00:00 2001 From: Zoffix Znet Date: Thu, 15 Dec 2016 17:13:00 +0000 Subject: [PATCH] Fix error in test Test in previous commit accidentally used wrong role names. - Fix formatting to be of shorter line length. - Fix test message, since we're no longer testing order --- integration/error-reporting.t | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/integration/error-reporting.t b/integration/error-reporting.t index 4b9e9d9b25..d4b98e8143 100644 --- a/integration/error-reporting.t +++ b/integration/error-reporting.t @@ -219,8 +219,10 @@ is_run Q[#`{{ my long # RT 130211 throws-like 'role R-RT130211 { method overload-this(){...} }; role C-RT130211 { method overload-this(){...} }; - class A does R does C {};', X::Comp::AdHoc, :message{ .contains('R-RT130211') and - .contains('C-RT130211') }, 'all roles with unimplemented method pointed out in reverse order'; + class A does R-RT130211 does C-RT130211 {};', + X::Comp::AdHoc, + :message{ .contains('R-RT130211') and .contains('C-RT130211') }, +'all roles with unimplemented method shown in error'; # RT #129800