From: David Lawrence Date: Wed, 31 Aug 2016 16:00:16 +0000 (+0000) Subject: - Fix whitespace issue in xt/webservice/bug_attachments.t X-Git-Tag: release-5.1.2~81 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=770835df2444c9ab12d644581c861f128d6ed894;p=thirdparty%2Fbugzilla.git - Fix whitespace issue in xt/webservice/bug_attachments.t --- diff --git a/xt/webservice/bug_attachments.t b/xt/webservice/bug_attachments.t index b0e6af81c6..cb70c3f495 100644 --- a/xt/webservice/bug_attachments.t +++ b/xt/webservice/bug_attachments.t @@ -142,7 +142,7 @@ sub post_success { cmp_ok($attachment->{file_name}, '=~', qr/^\w+\.pl$/, "filename is in the expected format"); is($attachment->{creator}, ($t->{user} ? $config->{QA_Selenium_TEST_user_login} : email_filter($config->{QA_Selenium_TEST_user_login})), - "creator is the correct user"); + "creator is the correct user"); my $data = $attachment->{data}; $data = decode_base64($data) if $rpc->isa('QA::RPC::JSONRPC'); is($data, $content, 'data is correct');