Skip to content
This repository was archived by the owner on Mar 13, 2021. It is now read-only.

Commit 491c4b2

Browse files
committed
function catalog package changed
1 parent cc95456 commit 491c4b2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/test/java/io/projectriff/invoker/FunctionConfigurationTests.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2017 the original author or authors.
2+
* Copyright 2017-2018 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -16,6 +16,10 @@
1616

1717
package io.projectriff.invoker;
1818

19+
import static org.hamcrest.Matchers.containsString;
20+
import static org.hamcrest.Matchers.is;
21+
import static org.junit.Assert.assertThat;
22+
1923
import java.util.function.Consumer;
2024
import java.util.function.Function;
2125
import java.util.function.Supplier;
@@ -27,16 +31,12 @@
2731
import org.springframework.beans.factory.annotation.Autowired;
2832
import org.springframework.boot.test.context.SpringBootTest;
2933
import org.springframework.boot.test.rule.OutputCapture;
30-
import org.springframework.cloud.function.context.catalog.InMemoryFunctionCatalog;
34+
import org.springframework.cloud.function.context.InMemoryFunctionCatalog;
3135
import org.springframework.cloud.function.core.FunctionCatalog;
3236
import org.springframework.test.annotation.DirtiesContext;
3337
import org.springframework.test.context.TestPropertySource;
3438
import org.springframework.test.context.junit4.SpringRunner;
3539

36-
import static org.hamcrest.Matchers.containsString;
37-
import static org.hamcrest.Matchers.is;
38-
import static org.junit.Assert.assertThat;
39-
4040
@RunWith(SpringRunner.class)
4141
@SpringBootTest(classes = { FunctionConfiguration.class, FunctionProperties.class,
4242
InMemoryFunctionCatalog.class })

0 commit comments

Comments
 (0)