From a7a8f9822082e533096e5bdecc531cbaea0f3931 Mon Sep 17 00:00:00 2001 From: Michal Cmarada Date: Wed, 10 Apr 2019 17:43:54 +0200 Subject: HONEYCOMB-448: JAVA 11 support - updated dependencies - compilation error fixes Change-Id: Iad9d353d06c113a0da892ff11a442e4b41edae0d Signed-off-by: Michal Cmarada --- .../java/io/fd/honeycomb/data/impl/PersistingDataTreeAdapterTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'infra/data-impl') diff --git a/infra/data-impl/src/test/java/io/fd/honeycomb/data/impl/PersistingDataTreeAdapterTest.java b/infra/data-impl/src/test/java/io/fd/honeycomb/data/impl/PersistingDataTreeAdapterTest.java index 487b84d22..44baed10d 100644 --- a/infra/data-impl/src/test/java/io/fd/honeycomb/data/impl/PersistingDataTreeAdapterTest.java +++ b/infra/data-impl/src/test/java/io/fd/honeycomb/data/impl/PersistingDataTreeAdapterTest.java @@ -122,7 +122,7 @@ public class PersistingDataTreeAdapterTest { @Test(expected = IllegalStateException.class) public void testPersistFailure() throws Exception { - doThrow(IOException.class).when(schemaService).getGlobalContext(); + doThrow(IllegalStateException.class).when(schemaService).getGlobalContext(); final PersistingDataTreeAdapter.JsonPersister jsonPersister = new PersistingDataTreeAdapter.JsonPersister(tmpPersistFile, schemaService); // Nothing -- cgit 1.2.3-korg