diff options
author | Matthew Somerville <matthew@mysociety.org> | 2019-06-26 12:19:32 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2019-06-26 12:20:56 +0100 |
commit | 3dd1d1f2cb68b731d23ecea9eb580fe08a190ce8 (patch) | |
tree | 318490dac2acd4ade4e4fa8b1e86fb01359beb5f /t | |
parent | 62b19194a099e6e5ac1140aea0ed42744cdff786 (diff) |
[Open311] Remove update problem matching warning.
Lots of false positives from other bodies too.
Diffstat (limited to 't')
-rw-r--r-- | t/open311/getservicerequestupdates.t | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/t/open311/getservicerequestupdates.t b/t/open311/getservicerequestupdates.t index 3cb2fda69..32f1ec2ee 100644 --- a/t/open311/getservicerequestupdates.t +++ b/t/open311/getservicerequestupdates.t @@ -1108,11 +1108,7 @@ subtest 'check matching on fixmystreet_id overrides service_request_id' => sub { system_user => $user, ); - warning_like { - $update->update_comments( $o, $bodies{2482} ) - } - qr/Failed to match comment to problem with fixmystreet id @{[$problem->external_id]} for Bromley/, - "warning emitted for bad fixmystreet id"; + $update->update_comments( $o, $bodies{2482} ); $problem->discard_changes; is $problem->comments->count, 2, 'two comments after fetching updates'; |