This is an automated email from the ASF dual-hosted git repository. olli pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-resource-presence.git
commit 847d629728ca21a12e447f521d9ae66ceebff681 Author: Oliver Lietz <[email protected]> AuthorDate: Sun Aug 28 22:33:54 2022 +0200 unify imports (import from org.hamcrest.Matchers) --- src/test/java/org/apache/sling/resource/presence/ChangeIT.java | 2 +- src/test/java/org/apache/sling/resource/presence/SimpleIT.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/java/org/apache/sling/resource/presence/ChangeIT.java b/src/test/java/org/apache/sling/resource/presence/ChangeIT.java index d08f70a..58eff4f 100644 --- a/src/test/java/org/apache/sling/resource/presence/ChangeIT.java +++ b/src/test/java/org/apache/sling/resource/presence/ChangeIT.java @@ -40,8 +40,8 @@ import static java.util.concurrent.TimeUnit.MILLISECONDS; import static java.util.concurrent.TimeUnit.SECONDS; import static org.apache.sling.testing.paxexam.SlingOptions.awaitility; import static org.awaitility.Awaitility.with; -import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; +import static org.hamcrest.Matchers.is; import static org.ops4j.pax.exam.CoreOptions.options; import static org.ops4j.pax.exam.cm.ConfigurationAdminOptions.factoryConfiguration; import static org.ops4j.pax.exam.cm.ConfigurationAdminOptions.newConfiguration; diff --git a/src/test/java/org/apache/sling/resource/presence/SimpleIT.java b/src/test/java/org/apache/sling/resource/presence/SimpleIT.java index 7bfaa1e..854e998 100644 --- a/src/test/java/org/apache/sling/resource/presence/SimpleIT.java +++ b/src/test/java/org/apache/sling/resource/presence/SimpleIT.java @@ -29,8 +29,8 @@ import org.ops4j.pax.exam.spi.reactors.ExamReactorStrategy; import org.ops4j.pax.exam.spi.reactors.PerClass; import org.ops4j.pax.exam.util.Filter; -import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; +import static org.hamcrest.Matchers.is; import static org.ops4j.pax.exam.CoreOptions.options; import static org.ops4j.pax.exam.cm.ConfigurationAdminOptions.factoryConfiguration;
