[Test] Change expected exception type after changes in core

Original commit: elastic/x-pack-elasticsearch@0ad2e06970
This commit is contained in:
Christoph Büscher 2017-11-08 12:54:54 +01:00
parent 7b25e7d9ed
commit 17ae4899c8
1 changed files with 3 additions and 1 deletions

View File

@ -6,7 +6,9 @@
package org.elasticsearch.xpack.notification.email.attachment;
import com.fasterxml.jackson.core.io.JsonEOFException;
import org.elasticsearch.ElasticsearchException;
import org.elasticsearch.common.ParsingException;
import org.elasticsearch.common.collect.MapBuilder;
import org.elasticsearch.common.settings.Settings;
import org.elasticsearch.common.unit.TimeValue;
@ -225,7 +227,7 @@ public class ReportingAttachmentParserTests extends ESTestCase {
// closing json bracket is missing
.thenReturn(new HttpResponse(200, "{\"path\": { \"foo\" : \"anything\"}}"));
ReportingAttachment attachment = new ReportingAttachment("foo", "http://www.example.org/", randomBoolean(), null, null, null, null);
IllegalArgumentException e = expectThrows(IllegalArgumentException.class,
ParsingException e = expectThrows(ParsingException.class,
() -> reportingAttachmentParser.toAttachment(createWatchExecutionContext(), Payload.EMPTY, attachment));
assertThat(e.getMessage(),
containsString("[reporting_attachment_kibana_payload] path doesn't support values of type: START_OBJECT"));