Bumping versions

This commit is contained in:
buildmaster
2020-07-14 05:29:37 +00:00
parent 909083bba9
commit 2d7c941716

View File

@@ -32,7 +32,8 @@ class SleuthContextListenerTest {
@Test
void should_be_usable_using_context() {
SleuthContextListener listener = SleuthContextListener.getBean(applicationContext);
SleuthContextListener listener = SleuthContextListener
.getBean(applicationContext);
then(listener).isNotNull();
then(listener.isUnusable()).isFalse();
@@ -40,7 +41,8 @@ class SleuthContextListenerTest {
@Test
void should_be_usable_using_beanfactory() {
SleuthContextListener listener = SleuthContextListener.getBean(applicationContext.getBeanFactory());
SleuthContextListener listener = SleuthContextListener
.getBean(applicationContext.getBeanFactory());
then(listener).isNotNull();
then(listener.isUnusable()).isFalse();